import type { NextConfig } from "next"; const allowedDevOrigins = process.env.DEV_ALLOWED_HOSTNAMES!.split(",").map((hostname) => hostname.trim()) const nextConfig: NextConfig = { /* config options here */ reactCompiler: true, allowedDevOrigins, output: "standalone", experimental: { webpackMemoryOptimizations: true } }; export default nextConfig;