From 0b5a0afe19f9b9130f76395ad0189c740bcc0098 Mon Sep 17 00:00:00 2001 From: katspaugh Date: Mon, 7 Nov 2022 14:26:35 +0100 Subject: [PATCH] Chore: enable sourcemaps on prod --- next.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.mjs b/next.config.mjs index 7e236e29ad..b5541579d8 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -4,6 +4,7 @@ import withBundleAnalyzer from '@next/bundle-analyzer' /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: false, + productionBrowserSourceMaps: true, eslint: { dirs: ['src'], },