This commit is contained in:
hailin 2025-07-29 16:11:16 +08:00
parent cb689486bb
commit 232463b5a8
2 changed files with 10 additions and 2 deletions

View File

@ -77,5 +77,9 @@ export default defineNuxtConfig({
},
devServer: {
host: '0.0.0.0'
},
},
ignore: [
'pages/**/_*/**',
'pages/**/_*.*'
],
});

View File

@ -2,6 +2,10 @@
// https://v3.nuxtjs.org/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"strict": false
"strict": false,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}