/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, webpack: (config) => { config.experiments = { topLevelAwait: true, layers: true, } return config }, } module.exports = nextConfig