Files
Dramlog-Prod/next.config.mjs
2025-12-18 00:32:45 +01:00

13 lines
270 B
JavaScript

/** @type {import('next').Config} */
const nextConfig = {
productionBrowserSourceMaps: false,
webpack: (config, { isServer }) => {
if (isServer) {
config.devtool = false;
}
return config;
},
};
export default nextConfig;