Skip to content

Commit 540893d

Browse files
authored
fix #6: remove ignoreBuildErrors: true so TypeScript errors fail the build properly
1 parent ff9cb8e commit 540893d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/next.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import type { NextConfig } from "next";
22

3+
// Fix #6: Removed ignoreBuildErrors: true
4+
// TypeScript errors will now properly fail the build, catching real bugs early
35
const nextConfig: NextConfig = {
4-
typescript: {
5-
ignoreBuildErrors: true,
6-
},
6+
// No typescript.ignoreBuildErrors - let real TS errors surface
77
};
88

99
export default nextConfig;

0 commit comments

Comments
 (0)