Ignorer les erreurs de dactylographie dans JS suivant

//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,
  },
}
CodePadding