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;