From 38f96458c1b668099f5f0a46fa636eb37c9a6467 Mon Sep 17 00:00:00 2001 From: Rishikesh Date: Thu, 7 May 2026 18:00:26 -0700 Subject: [PATCH] Enable production source maps --- next.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.ts b/next.config.ts index ed23578..2debbab 100644 --- a/next.config.ts +++ b/next.config.ts @@ -3,6 +3,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ output: "standalone", + productionBrowserSourceMaps: true, + experimental: { + serverSourceMaps: true, + }, }; export default nextConfig;