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

26 lines
540 B
TypeScript
Raw Normal View History

2025-06-22 10:02:50 +02:00
import type { NextConfig } from "next";
2025-07-16 01:00:40 +01:00
import { withBotId } from "botid/next/config";
2025-06-22 10:02:50 +02:00
const nextConfig: NextConfig = {
compiler: {
removeConsole: process.env.NODE_ENV === "production",
},
reactStrictMode: true,
productionBrowserSourceMaps: true,
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "plus.unsplash.com",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
2025-06-22 10:02:50 +02:00
};
2025-07-16 01:00:40 +01:00
export default withBotId(nextConfig);