1 2 3 4 5 6 7 8 9 10 11
module.exports = { reactStrictMode: true, typescript: { ignoreBuildErrors: true, }, webpack: (config) => { // support shiki top level await config.experiments = { ...config.experiments, ...{ topLevelAwait: true }}; return config; }, };