const { env } = require('process'); const withBundleAnalyzer = require('@next/bundle-analyzer')({ enabled: process.env.ANALYZE === 'true', }); module.exports = withBundleAnalyzer({ images: { domains: ['cdn.jsdelivr.net'], }, reactStrictMode: false, experimental: { outputStandalone: true, }, output: 'standalone', });