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