Files
OpenCut/apps/tools/next.config.ts
T

14 lines
326 B
TypeScript
Raw Normal View History

2025-11-26 08:47:03 +01:00
import type { NextConfig } from "next";
import { withBotId } from "botid/next/config";
const nextConfig: NextConfig = {
compiler: {
removeConsole: process.env.NODE_ENV === "production",
},
reactStrictMode: true,
productionBrowserSourceMaps: true,
output: "standalone",
};
export default withBotId(nextConfig);