Disable minification on production build, we don't need it here and it makes debugging annoying

This commit is contained in:
Ani Betts
2024-11-27 15:55:11 +01:00
parent 62546dec58
commit a00564fafa

View File

@@ -10,4 +10,12 @@ export default defineConfig({
"@": path.resolve(__dirname, "./src"),
},
},
build: {
minify: false,
rollupOptions: {
output: {
manualChunks: undefined
}
}
}
});