Disable typescript error check on nextjs build

This commit is contained in:
Takeshi Kimata
2024-04-20 20:28:21 +09:00
parent 8a4183c98b
commit 5a19b79031

View File

@@ -1,4 +1,12 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = {} const nextConfig = {
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
}
module.exports = nextConfig module.exports = nextConfig