aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-next/next.config.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-08-25 17:56:06 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-08-25 17:56:06 -0700
commit454160646923e98f00e53df025e324d3d2c585d0 (patch)
tree731c5243ac48077ffa1f974dcf46f3bc176792b6 /examples/hello-next/next.config.js
parent039bf6ecdb0be85ca78045b647de01bd176823c6 (diff)
downloadbun-454160646923e98f00e53df025e324d3d2c585d0.tar.gz
bun-454160646923e98f00e53df025e324d3d2c585d0.tar.zst
bun-454160646923e98f00e53df025e324d3d2c585d0.zip
latest
Former-commit-id: f5600d123d3710e7ea80ff2b7c66d13382462420
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,
+ },
+};