Compare commits

..

1 Commits

Author SHA1 Message Date
Gregory Schier
22ae951ab6 Enable source maps for production builds
Adds sourcemap: true to Vite build configuration to generate external source map files (.map) alongside JavaScript bundles. This enables debugging of production builds with original source code while keeping source maps separate from the main bundle files.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-17 09:53:13 -08:00

View File

@@ -39,6 +39,7 @@ export default defineConfig(async () => {
}),
],
build: {
sourcemap: true,
outDir: '../dist',
emptyOutDir: true,
rollupOptions: {