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