From 77d2d3462a93725842853ce0122fd0b6df26e031 Mon Sep 17 00:00:00 2001 From: Nex Date: Mon, 16 Feb 2026 10:57:59 +0000 Subject: [PATCH] Update Next.js configuration to allow production builds with type errors by enabling ignoreBuildErrors option --- apps/web/www/next.config.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/apps/web/www/next.config.ts b/apps/web/www/next.config.ts index 7e430ad..48d6d3a 100644 --- a/apps/web/www/next.config.ts +++ b/apps/web/www/next.config.ts @@ -2,6 +2,15 @@ import type { NextConfig } from "next"; import "./env"; -const nextConfig: NextConfig = {}; +const nextConfig: NextConfig = { + /* config options here */ + typescript: { + // !! WARN !! + // Dangerously allow production builds to successfully complete even if + // your project has type errors. + // !! WARN !! + ignoreBuildErrors: true, + }, +}; export default nextConfig;