Skip to content
Snippets Groups Projects
next.config.js 207 B
Newer Older
/** @type {import('next').NextConfig} */
module.exports = {
  reactStrictMode: true,
Marco Wettstein's avatar
Marco Wettstein committed
  webpack: (config, options) => {
    config.experiments = {
      topLevelAwait: true,
    };
    return config;
  },
};