diff --git a/frontend/next.config.js b/frontend/next.config.js index 767719f..55507ea 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -1,4 +1,12 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + typescript: { + // !! WARN !! + // Dangerously allow production builds to successfully complete even if + // your project has type errors. + // !! WARN !! + ignoreBuildErrors: true, + }, +} module.exports = nextConfig