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: { typescript: {
ignoreBuildErrors: true, ignoreBuildErrors: true,
}, },
// Desabilitar Turbopack no build (bug com middleware + standalone)
experimental: {
turbo: {
enabled: false,
},
},
}; };
export default nextConfig; export default nextConfig;

View File

@@ -5,7 +5,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build --no-turbopack", "build": "next build",
"start": "next start", "start": "next start",
"lint": "eslint" "lint": "eslint"
}, },