Update next.config.ts

This commit is contained in:
ar.azizan 2025-12-04 14:59:34 +00:00
parent ae22236943
commit b36f1cc22e
1 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,13 @@ const nextConfig: NextConfig = {
},
],
},
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
};
export default nextConfig;