Ignorieren von Typscript -Fehlern in der nächsten 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,
},
}
CodePadding