Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.2 KB

ignoring-typescript-errors.md

File metadata and controls

41 lines (32 loc) · 1.2 KB
description
Next.js reports TypeScript errors by default. Learn to opt-out of this behavior here.

Ignoring TypeScript Errors

Next.js fails your production build (next build) when TypeScript errors are present in your project.

If you'd like Next.js to dangerously produce production code even when your application has errors, you can disable the built-in type checking step.

Be sure you are running type checks as part of your build or deploy process, otherwise this can be very dangerous.

Open next.config.js and enable the ignoreBuildErrors option in the typescript config:

module.exports = {
  typescript: {
    // !! WARN !!
    // Dangerously allow production builds to successfully complete even if
    // your project has type errors.
    // !! WARN !!
    ignoreBuildErrors: true,
  },
}

Related