2025-10-22 10:57:30 +08:00
|
|
|
export default defineNuxtConfig({
|
2025-10-23 17:23:26 +08:00
|
|
|
compatibilityDate: '2025-07-15',
|
|
|
|
|
devtools: {enabled: true},
|
2025-10-27 09:46:46 +08:00
|
|
|
modules: ['@nuxt/eslint', '@nuxt/ui', '@nuxt/image', 'motion-v/nuxt'],
|
2025-10-23 17:23:26 +08:00
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
|
fonts: {
|
|
|
|
|
providers: {
|
|
|
|
|
google: false, // 禁用 Google Fonts
|
|
|
|
|
googleicons: false // 禁用 Google Icons
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2025-10-22 10:57:30 +08:00
|
|
|
})
|