Skip to content

Commit

Permalink
fix: generate bug
Browse files Browse the repository at this point in the history
  • Loading branch information
fdewas-aneo committed Nov 26, 2024
1 parent cb606aa commit 11b710a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@
"Armoni",
"armonik",
"nuxt"
]
],
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
}
}
11 changes: 10 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,18 @@ export default defineNuxtConfig({
},
},

devtools: true,
devtools: {
enabled: true,
},

experimental: {
watcher: 'parcel',
},

hooks: {
close: (nuxt) => {
if (!nuxt.options._prepare)
process.exit()
},
},
})
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"prepare": "nuxi prepare",
"dev": "nuxi dev",
"build": "npx playwright install && nuxi build",
"build": "npx playwright install && nuxi build --prerender",
"generate": "nuxi generate",
"preview": "nuxi preview",
"lint": "eslint .",
Expand Down

0 comments on commit 11b710a

Please sign in to comment.