stack/examples/docs-examples/next.config.js
Zai Shi 54027d58a2
New client (#135)
Co-authored-by: Konsti Wohlwend <[email protected]>
2024-07-19 22:07:44 -07:00

8 lines
180 B
JavaScript

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