stack/examples/docs-examples/next.config.js
Zai Shi 934eb78004
Fixed team selection (#124)
* fixed selected team switcher

* fixed selected team switcher

* updated lock files
2024-07-02 02:39:50 +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,
},
};