next.config.js 254 B

1234567891011
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. reactStrictMode: true,
  4. swcMinify: true,
  5. webpack(config) {
  6. config.experiments = { ...config.experiments, topLevelAwait: true };
  7. return config;
  8. },
  9. };
  10. export default nextConfig;