build: skip type check in next.js build (#2952)

This commit is contained in:
Alex Yang
2023-07-01 16:22:21 +08:00
parent d120f3ada8
commit fbc196e828

View File

@@ -56,6 +56,10 @@ const profileTarget = {
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
typescript: {
// We use `yarn typecheck` on top level to check types
ignoreBuildErrors: true,
},
sentry: {
hideSourceMaps: true,
},