Workflow SDK now supports TanStack Start
By Steven Van ·
The pre-release integration reuses the existing workflow/vite plugin so TanStack Start apps get durable, resumable workflows on Vercel.
Vercel's Vercel Workflow SDK now supports TanStack Start applications, according to a pre-release guide on workflow-sdk.dev. Because TanStack Start is built on Vite and Nitro, the existing workflow/vite plugin works directly: add workflow() to the plugins array in vite.config.ts, ahead of tanstackStart().
From there, developers write workflow and step functions in standard TypeScript using the "use workflow" and "use step" directives. The plugin handles compilation, queue configuration and persistence, so those functions run as durable, resumable operations that survive restarts, sleep for days, and retry automatically on failure. Read the TanStack Start guide for setup steps.
