From 7a67331d965ae1b5758c429b580ecf4dc23d39a6 Mon Sep 17 00:00:00 2001 From: Alex van Andel Date: Tue, 12 Dec 2023 16:16:04 +0000 Subject: [PATCH] fix: Disable source maps which looks to be infinitely looping (#12744) --- apps/web/next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 452838e30d..2106aeb0c1 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -161,7 +161,7 @@ const nextConfig = { ...i18n, localeDetection: false, }, - productionBrowserSourceMaps: true, + productionBrowserSourceMaps: false, /* We already do type check on GH actions */ typescript: { ignoreBuildErrors: !!process.env.CI,