sistema-de-chamados/next.config.ts
rever-tecnologia 326da8dae6 Skip TypeScript checking in production build
Adds typescript.ignoreBuildErrors to prevent OOM during build
on production server with limited memory.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-04 15:49:43 -03:00

11 lines
252 B
TypeScript

const nextConfig = {
typescript: {
// Pula verificacao de tipos durante build para evitar OOM no servidor de producao
ignoreBuildErrors: true,
},
experimental: {
turbopackFileSystemCacheForDev: true,
},
}
export default nextConfig