stack/apps/dev/next.config.js
2024-03-04 22:46:07 +01:00

9 lines
214 B
JavaScript

/** @type {import("next").NextConfig} */
module.exports = {
productionBrowserSourceMaps: true,
webpack(config) {
config.experiments = { ...config.experiments, topLevelAwait: true }
return config
},
}