diff --git a/docs/api-reference/next.config.js/ignoring-typescript-errors.md b/docs/api-reference/next.config.js/ignoring-typescript-errors.md index 57335b30cf8c..d94f5087d5a3 100644 --- a/docs/api-reference/next.config.js/ignoring-typescript-errors.md +++ b/docs/api-reference/next.config.js/ignoring-typescript-errors.md @@ -15,10 +15,8 @@ Open `next.config.js` and enable the `ignoreBuildErrors` option in the `typescri ```js module.exports = { typescript: { - // !! WARN !! // Dangerously allow production builds to successfully complete even if // your project has type errors. - // !! WARN !! ignoreBuildErrors: true, }, } diff --git a/docs/basic-features/typescript.md b/docs/basic-features/typescript.md index 3dbe8af64dc3..194f3e563543 100644 --- a/docs/basic-features/typescript.md +++ b/docs/basic-features/typescript.md @@ -174,10 +174,8 @@ Open `next.config.js` and enable the `ignoreBuildErrors` option in the `typescri ```js module.exports = { typescript: { - // !! WARN !! // Dangerously allow production builds to successfully complete even if // your project has type errors. - // !! WARN !! ignoreBuildErrors: true, }, }