Files
OpenCut/apps/web/next.config.ts
Maze Winther 87a83a5604 Initial commit
2025-06-22 10:02:50 +02:00

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;