From 96724709bd724ca6f5e9bb4b54eefb5a709e2db1 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 26 Apr 2023 23:30:51 +0800 Subject: [PATCH] chore: prevent typescript errors when building docker file --- next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.js b/next.config.js index b9f2896..a88c8c0 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ module.exports = { output: "standalone", + // Prevent TypeScript errors. + typescript: { + ignoreBuildErrors: true, + }, };