import type { NextConfig } from "next"; const nextConfig: NextConfig = { compiler: { removeConsole: process.env.NODE_ENV === "production", }, reactStrictMode: true, productionBrowserSourceMaps: true, }; export default nextConfig;