/** @type {import('next').NextConfig} */ const withBundleAnalyzer = require('@next/bundle-analyzer')({ enabled: process.env.ANALYZE === 'true', openAnalyzer: false }) const nextConfig = withBundleAnalyzer({ reactStrictMode: true }) module.exports = nextConfig