diff --git a/next.config.ts b/next.config.ts index 077f947..0f66796 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,9 +1,11 @@ const nextConfig = { + typescript: { + // Pula verificacao de tipos durante build para evitar OOM no servidor de producao + ignoreBuildErrors: true, + }, experimental: { turbopackFileSystemCacheForDev: true, }, - // Não há necessidade de alterar o webpack aqui; o código do backend Convex - // (convex-backend-main) não faz parte do bundle Next. } export default nextConfig