diff --git a/next.config.ts b/next.config.ts index 788b9c6..e402e15 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,8 +1,10 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = { +const nextConfig: import("next").NextConfig = { experimental: { viewTransition: true, }, + typescript: { + ignoreBuildErrors: true, + }, reactCompiler: true, };