Problem
My Next.js 16.1.6 project builds successfully on Vercel but fails during the “Deploying outputs…” phase with: Error: Unexpected error. Please try again. (). No useful logs, no stack trace.
Current behavior
The build completes every time. Build logs show all 12 pages generated, serverless functions created, and Build Completed in /vercel/output. The failure happens only after that, at the output-deploy step.
npx vercel inspect on the failed deployment shows zero build artifacts:
id dpl_AdT1LZcWpNqWHjyfvNFiXK6577rf
target preview
status Error
Builds
- . [0ms]
A successful build in /vercel/output but an empty Builds record (0ms, no artifacts) points to the output-upload step failing on the platform side rather than in my code.
Environment
- Framework: Next.js 16.1.6 (App Router)
- Plan: Hobby
- Node: 22.x
- Function Region: iad1
- Fluid Compute: enabled
- Stack: Supabase + Cloudflare R2
What I’ve verified / ruled out
npm run buildpasses locally, clean (TypeScript OK, all 12 pages generated)- No
middleware.tsorproxy.tsin the repository — verified withgit ls-files(only third-party matches inside node_modules) - No residual Firebase imports (grep clean in app/ and lib/)
- Deploying via
npx vercelCLI — same error - Redeploy without build cache — same error
- As isolation tests I briefly tried Function Region gru1 and Fluid Compute disabled — same failure, so I reverted both to the defaults above
- Persists 12+ hours across many retries, including a cold retry the next day
Detail: the main branch (deployed ~2 months ago) works fine in production. Only new deployments from my current feature branch (migracion/supabase) fail. Same repo, same account.
Failed deployment ID: dpl_AdT1LZcWpNqWHjyfvNFiXK6577rf
URL: scanivo-3m4xnzsjx-sebastianspr344-projects.vercel.app
Is this a known platform-side issue right now? The empty Builds record / zero output artifacts pattern suggests the failure is on the deploy infrastructure. Happy to provide more deployment IDs. Thanks.