OpenCut/apps/web/next.config.ts

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;