From 67abf41c622fc54d840ff88f7ff94166681d0764 Mon Sep 17 00:00:00 2001 From: nezouse Date: Wed, 20 Mar 2024 17:40:54 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Add=20source=20maps=20on?= =?UTF-8?q?=20prod?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index d6d9e939..e36e2882 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,8 @@ /** @type {import('next').NextConfig} */ import { withAxiom } from "next-axiom"; -const nextConfig = withAxiom({}); +const nextConfig = withAxiom({ + productionBrowserSourceMaps: true, +}); export default nextConfig;