From 081957d1dfa2b72cc38d2400fdde437c0a384e96 Mon Sep 17 00:00:00 2001 From: Rami Bitar Date: Mon, 13 Apr 2026 00:09:41 -0400 Subject: [PATCH] disable typescript errors from builds --- next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.ts b/next.config.ts index 66e1566..fbb88da 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ + typescript: { + ignoreBuildErrors: true, + }, reactCompiler: true, };