14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
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);
|