From 11063611bf0924d441ddc5bbe3cecf043779007e Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Fri, 13 Mar 2026 12:49:12 +0100 Subject: [PATCH] Do not ship source maps even in web --- web/next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/next.config.ts b/web/next.config.ts index 277fc716..8c7b9126 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -7,7 +7,7 @@ console.log({isAppBuild}) const nextConfig: NextConfig = { output: isAppBuild ? 'export' : undefined, - productionBrowserSourceMaps: !isAppBuild, // no source maps in Android build + // productionBrowserSourceMaps: !isAppBuild, // no source maps in Android build reactStrictMode: true, modularizeImports: { // heroicons v1 transforms removed — v2 has tree-shaking built in