diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs index b0c1476c..31faf8ff 100644 --- a/apps/web/next.config.mjs +++ b/apps/web/next.config.mjs @@ -8,6 +8,13 @@ if (process.env.NODE_ENV === "development") { } /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + eslint: { + ignoreBuildErrors: true, + }, + typescript: { + ignoreBuildErrors: true, + }, +}; export default nextConfig;