aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-next/next.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello-next/next.config.js')
-rw-r--r--examples/hello-next/next.config.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/examples/hello-next/next.config.js b/examples/hello-next/next.config.js
index 0d6071006..c161436ab 100644
--- a/examples/hello-next/next.config.js
+++ b/examples/hello-next/next.config.js
@@ -1,3 +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,
+ },
+};