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