stack/examples/custom-pages-example/next.config.js
2024-06-16 14:58:10 +02:00

11 lines
227 B
JavaScript

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