diff --git a/frontend/next.config.ts b/frontend/next.config.ts index f4b5e4d..34703c7 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -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; diff --git a/frontend/package.json b/frontend/package.json index 48e2e32..7b42a55 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "next dev --turbopack", - "build": "next build --no-turbopack", + "build": "next build", "start": "next start", "lint": "eslint" },