Import nuxt 3 and edit to script setup

This commit is contained in:
2021-11-07 22:19:18 +01:00
parent 0ed426b710
commit 83c1eca443
60 changed files with 3293 additions and 7086 deletions

View File

@@ -0,0 +1,23 @@
export default {
scan: {
dirs: [ './' ],
exclude: [
'node_modules',
'.git',
'.nuxt/**/*',
'build/**/*',
'*.template.html',
'app.html'
],
include: []
},
transformCSS: 'pre',
preflight: {
alias: {
// add nuxt aliases
'nuxt-link': 'a',
// @nuxt/image module
'nuxt-img': 'img',
}
}
}