/** * @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: false, swcMinify: true, images: { unoptimized: true, }, typescript: { ignoreBuildErrors: true, }, webpack: (config) => { config.experiments = { ...config.experiments, topLevelAwait: true }; return config; }, }; module.exports = nextConfig;