diff --git a/next.config.js b/next.config.js index 7b09dd4..443e5df 100644 --- a/next.config.js +++ b/next.config.js @@ -3,6 +3,13 @@ const nextConfig = { compiler: { styledComponents: true, }, + typescript: { + // !! WARN !! + // Dangerously allow production builds to successfully complete even if + // your project has type errors. + // !! WARN !! + ignoreBuildErrors: true, + }, }; module.exports = nextConfig;