livekit-dgn/next.config.js
Jonas Schell 6254981980
turn on source maps for production (#59)
* turn on source maps

* add source-map-loader
2023-04-21 11:19:55 +02:00

20 lines
504 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
swcMinify: false,
productionBrowserSourceMaps: true,
webpack: (config, { buildId, dev, isServer, defaultLoaders, nextRuntime, webpack }) => {
// Important: return the modified config
config.module.rules = [
...config.module.rules,
{
test: /\.mjs$/,
enforce: 'pre',
use: ['source-map-loader'],
},
];
return config;
},
};
module.exports = nextConfig;