From e3298e5f2db136fb0432be56aebaf19c0864f082 Mon Sep 17 00:00:00 2001 From: Sid Jain Date: Sun, 1 Feb 2026 09:17:35 +0530 Subject: [PATCH 1/3] Ignore lint and typecheck in builds --- next.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/next.config.ts b/next.config.ts index 37031a6..79d4485 100644 --- a/next.config.ts +++ b/next.config.ts @@ -3,6 +3,12 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactCompiler: true, + eslint: { + ignoreDuringBuilds: true, + }, + typescript: { + ignoreBuildErrors: true, + }, }; const withMDX = createMDX({ From 9397b5869efb10355643bd30dea58d057408ebb4 Mon Sep 17 00:00:00 2001 From: Sid Jain Date: Sun, 1 Feb 2026 09:20:35 +0530 Subject: [PATCH 2/3] Scope typecheck ignore to Vercel --- next.config.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/next.config.ts b/next.config.ts index 79d4485..397a997 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,13 +1,12 @@ import createMDX from "@next/mdx"; import type { NextConfig } from "next"; +const isVercel = process.env.VERCEL === "1"; + const nextConfig: NextConfig = { reactCompiler: true, - eslint: { - ignoreDuringBuilds: true, - }, typescript: { - ignoreBuildErrors: true, + ignoreBuildErrors: isVercel, }, }; From 08c4c7b1ed5fe02fa4c3f6a90760ee9fbc03d3c3 Mon Sep 17 00:00:00 2001 From: Sid Jain Date: Sun, 1 Feb 2026 09:21:41 +0530 Subject: [PATCH 3/3] Always ignore typecheck in builds --- next.config.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/next.config.ts b/next.config.ts index 397a997..47d3065 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,12 +1,10 @@ import createMDX from "@next/mdx"; import type { NextConfig } from "next"; -const isVercel = process.env.VERCEL === "1"; - const nextConfig: NextConfig = { reactCompiler: true, typescript: { - ignoreBuildErrors: isVercel, + ignoreBuildErrors: true, }, };