import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ output: 'standalone', reactCompiler: true, // Allow external images if needed images: { domains: [], }, }; export default nextConfig;