vercel ignore typescript
Unanswered
Golden Eagle posted this in #help-forum
Golden EagleOP
how do I make vercel ignore typescript? This is my next.js config
/** @type {import('next').NextConfig} */
const nextConfig = {}
module.exports = nextConfig
module.exports = {
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
}