Files
bun.sh/packages/bun-landing/next.config.js

12 lines
262 B
JavaScript

module.exports = {
reactStrictMode: true,
typescript: {
ignoreBuildErrors: true,
},
webpack: (config) => {
// support shiki top level await
config.experiments = { ...config.experiments, ...{ topLevelAwait: true }};
return config;
},
};