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