2025-10-27 16:22:18 +08:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
|
export default defineNuxtConfig({
|
|
|
|
|
compatibilityDate: '2025-07-15',
|
|
|
|
|
devtools: { enabled: true },
|
|
|
|
|
modules: ['@nuxt/eslint', '@nuxt/ui', '@nuxt/image'],
|
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
|
fonts: {
|
|
|
|
|
providers: {
|
|
|
|
|
google: false, // 禁用 Google Fonts
|
|
|
|
|
googleicons: false // 禁用 Google Icons
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-10-28 10:13:47 +08:00
|
|
|
// 开发服务器配置
|
|
|
|
|
devServer: {
|
|
|
|
|
port: 3008,
|
|
|
|
|
host: '0.0.0.0'
|
|
|
|
|
}
|
2025-10-27 16:22:18 +08:00
|
|
|
})
|