/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', experimental: { missingSuspenseWithCSRBailout: false, }, images: { remotePatterns: [ { protocol: 'https', hostname: '**' }, { protocol: 'http', hostname: '**' }, ], }, } module.exports = nextConfig