From 73d3b662caa17091127c6deae24304bc3a5bb488 Mon Sep 17 00:00:00 2001 From: Bailey Pumfleet Date: Wed, 7 Apr 2021 21:05:23 +0100 Subject: [PATCH] Set Next.js to ignore TypeScript errors --- next.config.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 next.config.js diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000000..70fb50ddd3 --- /dev/null +++ b/next.config.js @@ -0,0 +1,5 @@ +module.exports = { + typescript: { + ignoreBuildErrors: true, + }, +}