This commit is contained in:
hailin 2025-07-29 23:06:29 +08:00
parent 55ab815f45
commit 899405b03b
1 changed files with 10 additions and 4 deletions

View File

@ -78,8 +78,14 @@ export default defineNuxtConfig({
devServer: { devServer: {
host: '0.0.0.0' host: '0.0.0.0'
}, },
ignore: [ appConfig: {
'src/pages/**/_*/**', pageIgnorePatterns: [
'src/pages/**/_*.*' '**/_*/**',
], '**/_*.*'
]
},
// ignore: [
// 'src/pages/**/_*/**',
// 'src/pages/**/_*.*'
// ],
}); });