import type { NextConfig } from "next" const nextConfig: NextConfig = { reactCompiler: { compilationMode: "all" }, cacheComponents: true, output: process.env.DOCKER === "1" ? "standalone" : undefined, typedRoutes: true, experimental: { browserDebugInfoInTerminal: true } } export default nextConfig