Skip to content

Commit 464aa20

Browse files
fix: ignore ESLint and TypeScript errors during Next.js build
Intentional code quality violations should not block container build. Linting is done separately by the scanner workflows. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a0dd5a6 commit 464aa20

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

cq-demo-app-001/next.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
44
output: "standalone",
5+
eslint: {
6+
ignoreDuringBuilds: true,
7+
},
8+
typescript: {
9+
ignoreBuildErrors: true,
10+
},
511
};
612

713
export default nextConfig;

0 commit comments

Comments
 (0)