13 lines
270 B
JavaScript
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;
|