From d8b037a15b6054cf2d1cf82b3cf8eb1d1872fa2f Mon Sep 17 00:00:00 2001 From: videogame hacker Date: Mon, 13 Feb 2023 18:23:43 +0000 Subject: [PATCH] Enable source maps --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index a843cbe..4262062 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, + productionBrowserSourceMaps: true, } module.exports = nextConfig