# 忽略TypeScript错误

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.jsand enable the ignoreBuildErrorsoption in the typescriptconfig:

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

Introduction to next.config.jsLearn more about the configuration file used by Next.js. TypeScriptGet started with TypeScript in Next.js.

Last Updated: 5/13/2023, 8:55:38 PM