From 0bc1785b80bb139e07d83dc429898551e4a8dcaf Mon Sep 17 00:00:00 2001 From: "Hong Jing (Jingles)" Date: Wed, 4 Sep 2024 21:43:19 +0800 Subject: [PATCH] Update next.config.js --- apps/playground/next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/playground/next.config.js b/apps/playground/next.config.js index d4cde4ff..a2bea8e5 100644 --- a/apps/playground/next.config.js +++ b/apps/playground/next.config.js @@ -11,5 +11,8 @@ const nextConfig = { return config; }, pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"], + typescript: { + ignoreBuildErrors: true, + }, }; module.exports = withMDX(nextConfig);