This commit is contained in:
parent
cb689486bb
commit
232463b5a8
|
|
@ -77,5 +77,9 @@ export default defineNuxtConfig({
|
|||
},
|
||||
devServer: {
|
||||
host: '0.0.0.0'
|
||||
},
|
||||
},
|
||||
ignore: [
|
||||
'pages/**/_*/**',
|
||||
'pages/**/_*.*'
|
||||
],
|
||||
});
|
||||
|
|
|
|||
|
|
@ -2,6 +2,10 @@
|
|||
// https://v3.nuxtjs.org/concepts/typescript
|
||||
"extends": "./.nuxt/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"strict": false
|
||||
"strict": false,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue