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);