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