fix: desabilitar Turbopack via next.config.ts

This commit is contained in:
Erik
2025-11-27 12:17:14 -03:00
parent 12b79e7948
commit af9c3166b4
2 changed files with 7 additions and 1 deletions

View File

@@ -11,6 +11,12 @@ const nextConfig: NextConfig = {
typescript: {
ignoreBuildErrors: true,
},
// Desabilitar Turbopack no build (bug com middleware + standalone)
experimental: {
turbo: {
enabled: false,
},
},
};
export default nextConfig;