From 44fc3446034e957900403c128bd50eb6f25724ad Mon Sep 17 00:00:00 2001 From: Martin <2026226+martin-mfg@users.noreply.github.com> Date: Wed, 4 Mar 2026 12:13:41 +0100 Subject: [PATCH] enable sourcemap (#116) Enabling sourcemap to make debugging easier. This is an open source project, so there's nothing to hide anyway. --- apps/frontend/vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/frontend/vite.config.ts b/apps/frontend/vite.config.ts index 358cb481..b6c6e152 100644 --- a/apps/frontend/vite.config.ts +++ b/apps/frontend/vite.config.ts @@ -55,6 +55,7 @@ export default defineConfig({ ], build: { outDir: "build", + sourcemap: true, /** @todo use chunks to split bundle? */ chunkSizeWarningLimit: 800,