mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
/** @type {import("next").NextConfig} */
|
|
module.exports = {
|
|
webpack(config) {
|
|
config.experiments = { ...config.experiments, topLevelAwait: true };
|
|
return config;
|
|
},
|
|
compiler: {
|
|
styledComponents: true,
|
|
},
|
|
};
|