We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad538e9 commit 614cc01Copy full SHA for 614cc01
examples/bugs/gh-219/next.config.ts
@@ -1,7 +1,11 @@
1
import type { NextConfig } from "next";
2
3
const nextConfig: NextConfig = {
4
- /* config options here */
+ eslint: {
5
+ // Warning: This allows production builds to successfully complete even if
6
+ // your project has ESLint errors.
7
+ ignoreDuringBuilds: true,
8
+ },
9
};
10
11
export default nextConfig;
0 commit comments