disable typescript errors from builds

This commit is contained in:
Rami Bitar
2026-04-13 00:09:41 -04:00
parent f37ef83f81
commit 081957d1df

View File

@@ -2,6 +2,9 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
typescript: {
ignoreBuildErrors: true,
},
reactCompiler: true,
};