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 a281e1c commit 4190853Copy full SHA for 4190853
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