Ignore build errors

This commit is contained in:
Laurie Voss
2025-06-23 13:47:00 -07:00
parent 6c1ac30aad
commit 7aa36aeb26
+7 -1
View File
@@ -1,7 +1,13 @@
import type { NextConfig } from "next";
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;