[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Help](/c/help/9) # Next.js build hangs at "Generating static pages using 1 worker (0/6)" on Vercel 18 views · 0 likes · 1 post Marc (@theboyplunger0x) · 2026-03-26 ## Problem My project has been failing to deploy for 15+ hours. Every build compiles successfully but then hangs indefinitely at the static page generation step and eventually gets canceled. Every deployment hangs indefinitely at `Generating static pages using 1 worker (0/6)` and eventually gets canceled. It never advances past 0/6. **Expected behavior:** Build completes in ~28 seconds as it was doing before this issue started. ## Steps to Reproduce / What I've Tried 1. Ran `vercel --prod` — build compiles successfully (~8s) then hangs 2. Added `export const dynamic = "force-dynamic"` to all pages — still hangs 3. Added `staticPageGenerationTimeout: 120` to `next.config.ts` — still hangs 4. Cleared build cache from dashboard — still hangs 5. 10+ attempts over 15+ hours — same result every time ## Build Output The build always stops here: ```bash ✓ Compiled successfully in ~8s Running TypeScript … Collecting page data using 1 worker … Generating static pages using 1 worker (0/6) … ``` ## Project Info - **Framework:** `Next.js 16.1.6` + `Turbopack` - **React:** `19` - **Tailwind CSS:** `4` - **Project:** `fud-markets` — team `theboyplunger0x-8019s-projects` - **URL:** `fud-markets.vercel.app` - **Region:** `iad1` (Washington D.C.) - Zero `TypeScript` errors, code compiles clean locally