Answers for "Ignoring TypeScript Errors in next js"

1

Ignoring TypeScript Errors in next js

//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,
  },
}
Posted by: Guest on May-05-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language