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;