Skip to content

Commit a00564f

Browse files
committed
Disable minification on production build, we don't need it here and it makes debugging annoying
1 parent 62546de commit a00564f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

client/vite.config.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,12 @@ export default defineConfig({
1010
"@": path.resolve(__dirname, "./src"),
1111
},
1212
},
13+
build: {
14+
minify: false,
15+
rollupOptions: {
16+
output: {
17+
manualChunks: undefined
18+
}
19+
}
20+
}
1321
});

0 commit comments

Comments
 (0)