diff options
Diffstat (limited to 'examples/next/next.config.js')
-rw-r--r-- | examples/next/next.config.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/next/next.config.js b/examples/next/next.config.js new file mode 100644 index 000000000..c161436ab --- /dev/null +++ b/examples/next/next.config.js @@ -0,0 +1,10 @@ +module.exports = { + reactStrictMode: true, + typescript: { + // !! WARN !! + // Dangerously allow production builds to successfully complete even if + // your project has type errors. + // !! WARN !! + ignoreBuildErrors: true, + }, +}; |