Remove sourcemap generation in bundle size calc (#7966)

This commit is contained in:
Tom Moor
2024-11-16 19:57:19 -05:00
committed by GitHub
parent d1de84a07e
commit 19ea7ee52b

View File

@@ -159,7 +159,7 @@ export default () =>
build: {
outDir: "./build/app",
manifest: true,
sourcemap: true,
sourcemap: process.env.CI ? false : "hidden",
minify: "terser",
// Prevent asset inling as it does not conform to CSP rules
assetsInlineLimit: 0,