aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-landing/next.config.js
blob: 5a8ff89b2c0cdfeba0398b6ef027fafc7c87e9e0 (plain) (blame)
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;
  },
};