2025-09-29 13:52:10 +08:00
|
|
|
export default defineNuxtConfig({
|
2025-09-29 14:45:33 +08:00
|
|
|
compatibilityDate: '2025-07-15',
|
|
|
|
|
devtools: {enabled: true},
|
|
|
|
|
modules: ['@nuxt/eslint', '@nuxt/ui', '@nuxt/image'],
|
|
|
|
|
fonts: {
|
|
|
|
|
providers: {
|
|
|
|
|
google: false, // 禁用 Google Fonts
|
|
|
|
|
googleicons: false // 禁用 Google Icons
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
|
nitro: {
|
|
|
|
|
prerender: {
|
|
|
|
|
routes: [
|
|
|
|
|
'/',
|
|
|
|
|
],
|
|
|
|
|
crawlLinks: true
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-09-29 13:52:10 +08:00
|
|
|
})
|