aboutsummaryrefslogtreecommitdiff
path: root/examples/next/next.config.js
blob: c161436ab50be8824bd92de82e7e12dfe5207bbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = {
  reactStrictMode: true,
  typescript: {
    // !! WARN !!
    // Dangerously allow production builds to successfully complete even if
    // your project has type errors.
    // !! WARN !!
    ignoreBuildErrors: true,
  },
};