1
0
mirror of synced 2026-05-20 17:28:31 +08:00
Files
cook/nuxt.config.ts
YunYouJun 7028efeb5e feat(cook): merge @cook/types into @yunyoujun/cook, add CLI search & skill
- Merge packages/types into packages/cook/src/types
- Add CLI search command with ingredient alias support
- Add build config (unbuild) and GitHub Actions publish workflow
- Add Cook Skill documentation (SKILL.md, README.md)
- Update all imports from @cook/types to @yunyoujun/cook
- Bump @nuxt/test-utils 4.0.0 → 4.0.2, update lastDbUpdated
2026-04-12 19:22:54 +08:00

168 lines
3.7 KiB
TypeScript

import process from 'node:process'
import { defineNuxtConfig } from 'nuxt/config'
import { simpleGit } from 'simple-git'
// import { pwa } from './app/config/pwa'
import { appDescription } from './app/constants/index'
// for cloudflare
// Object.assign(process.env, {
// VITE_COMMIT_REF: process.env.CF_PAGES_COMMIT_SHA || '',
// })
/**
* Get git repo latest commit
*/
async function getLatestCommit() {
const git = simpleGit()
try {
const log = await git.log({ maxCount: 1 })
return log.latest
}
catch (error) {
console.error('Error fetching latest commit:', error)
return null
}
}
try {
const latestCommit = await getLatestCommit()
/**
* CF_PAGES_COMMIT_SHA is Cloudflare Pages env
*/
process.env.VITE_COMMIT_REF = process.env.CF_PAGES_COMMIT_SHA || latestCommit?.hash || ''
// add build date string to env
process.env.VITE_APP_BUILD_DATE = latestCommit?.date || new Date().toString()
}
catch (e) {
console.error('Not in git repo, get latest commit failed:', e)
process.env.VITE_APP_BUILD_DATE = new Date().toString()
process.env.VITE_COMMIT_REF = ''
}
export default defineNuxtConfig({
modules: [
'@vueuse/nuxt',
'@unocss/nuxt',
'@pinia/nuxt',
'@nuxtjs/color-mode',
// '@vite-pwa/nuxt',
'@nuxt/eslint',
'@nuxt/test-utils/module',
'@yunlefun/vue/nuxt',
// fix QQ in iOS, Done
// See https://github.com/unjs/ofetch/pull/366
// 'nuxt-fix-ofetch',
'@nuxt/scripts',
'@nuxtjs/ionic',
],
ssr: false,
components: [
{ path: '~/components', pathPrefix: false },
],
devtools: {
enabled: true,
},
app: {
head: {
viewport: 'width=device-width,initial-scale=1',
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png' },
],
meta: [
{ name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no, viewport-fit=cover' },
{ name: 'description', content: appDescription },
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' },
{ name: 'color-scheme', content: 'light dark' },
{ name: 'theme-color', media: '(prefers-color-scheme: light)', content: 'white' },
{ name: 'theme-color', media: '(prefers-color-scheme: dark)', content: '#222222' },
],
},
},
css: [
'@unocss/reset/tailwind.css',
'~/styles/css-vars.scss',
'~/styles/index.scss',
'~/styles/index.ts',
],
router: {
options: {
scrollBehaviorType: 'smooth',
},
},
colorMode: {
classSuffix: '',
},
alias: {
'@cook/types': './packages/cook/src/types',
},
future: {
compatibilityVersion: 4,
},
experimental: {
// when using generate, payload js assets included in sw precache manifest
// but missing on offline, disabling extraction it until fixed
payloadExtraction: false,
renderJsonPayloads: true,
typedPages: true,
},
compatibilityDate: '2025-05-15',
nitro: {
esbuild: {
options: {
target: 'esnext',
},
},
prerender: {
crawlLinks: false,
routes: ['/', '/random', '/help', '/user', '/404', '/settings'],
ignore: ['/hi'],
},
},
eslint: {
config: {
standalone: false,
nuxt: {
sortConfigKeys: true,
},
},
},
ionic: {
css: {
core: true,
basic: true,
utilities: true,
},
config: {
mode: 'ios',
backButtonText: '返回',
},
},
// pwa,
/**
* @see https://scripts.nuxt.com/scripts/tracking/google-tag-manager
*/
scripts: {
registry: {
googleTagManager: {
id: 'GTM-5FJSV46',
},
},
},
})