Skip to content

Commit

Permalink
fix nuxt.config.ts error, removed lines not intended for commit
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 27, 2024
1 parent b4c5cc7 commit 5aa9994
Showing 1 changed file with 6 additions and 24 deletions.
30 changes: 6 additions & 24 deletions frontend/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,15 @@ export default defineNuxtConfig({
watch: {
usePolling: true,
ignored: [
"**/playwright/**",
"**/playwright-report/**",
"**/tests/**",
"**/test-results/**",
"**/frontend/test-results/**",
"**/frontend/test-results/accessibility-results/**",
'**/playwright/**',
'**/playwright-report/**',
'**/tests/**',
'**/test-results/**',
'**/frontend/test-results/**',
'**/frontend/test-results/accessibility-results/**'
],
},
},
build: {
rollupOptions: {
output: {
manualChunks: {
vue: ["vue"],
vueuse: ["@vueuse/core"],
},
},
},
},
optimizeDeps: {
include: ["vue", "@vueuse/core"],
},
},
colorMode: {
classSuffix: "",
Expand Down Expand Up @@ -96,9 +83,4 @@ export default defineNuxtConfig({
["swiper-slide", "swiper-container"].includes(tag),
},
},
hooks: {
"app:resolve": (app) => {
console.log("App instance resolved:", app);
},
},
});

0 comments on commit 5aa9994

Please sign in to comment.