// next.config.js const nextConfig = { output: "standalone", // Add other configurations below reactStrictMode: true, swcMinify: true, experimental: { missingSuspenseWithCSRBailout: false, }, }; module.exports = nextConfig;