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 76cbb44 commit b83c2aaCopy full SHA for b83c2aa
next.config.ts
@@ -2,6 +2,18 @@ import type { NextConfig } from "next";
2
3
const nextConfig: NextConfig = {
4
/* config options here */
5
+ typescript: {
6
+ // !! WARN !!
7
+ // Dangerously allow production builds to successfully complete even if
8
+ // your project has type errors.
9
10
+ ignoreBuildErrors: true,
11
+ },
12
+ eslint: {
13
+ // Warning: This allows production builds to successfully complete even if
14
+ // your project has ESLint errors.
15
+ ignoreDuringBuilds: true,
16
17
};
18
19
export default nextConfig;
0 commit comments