allows builds to complete even if the project has lint errors. (#552)
This commit is contained in:
parent
2d23a8b7db
commit
d01d8b7a5e
1 changed files with 4 additions and 0 deletions
|
@ -42,6 +42,10 @@ module.exports = withTM({
|
||||||
locales: ["en"],
|
locales: ["en"],
|
||||||
defaultLocale: "en",
|
defaultLocale: "en",
|
||||||
},
|
},
|
||||||
|
eslint: {
|
||||||
|
// This allows production builds to successfully complete even if the project has ESLint errors.
|
||||||
|
ignoreDuringBuilds: true,
|
||||||
|
},
|
||||||
typescript: {
|
typescript: {
|
||||||
ignoreBuildErrors: true,
|
ignoreBuildErrors: true,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue