diff options
author | 2021-10-15 20:08:40 -0700 | |
---|---|---|
committer | 2021-10-15 20:08:40 -0700 | |
commit | cf2e81b03662c4b1a227d1bc9560a91826ef20e6 (patch) | |
tree | 0dc03cb97af1eb0615b8bb491696247962a81b73 /examples/next/next.config.js | |
parent | 0baa3b511e28cfb124f712e12d8f93474e6ce6fa (diff) | |
parent | bf2732599cc7e45f320f75b38672c1a1fc3d5583 (diff) | |
download | bun-cf2e81b03662c4b1a227d1bc9560a91826ef20e6.tar.gz bun-cf2e81b03662c4b1a227d1bc9560a91826ef20e6.tar.zst bun-cf2e81b03662c4b1a227d1bc9560a91826ef20e6.zip |
Merge branch 'jarred/gen'
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, + }, +}; |