# Workflow SDK now supports TanStack Start

DevFeed: [Workflow SDK now supports TanStack Start](<https://devfeed.tech/articles/workflow-sdk-now-supports-tanstack-start-1205.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/workflow-sdk-now-supports-tanstack-start>)

Author: Peter Wielander

Published: 2026-06-16T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [SDKs](<https://devfeed.tech/topics/sdks.md>), [Vercel](<https://devfeed.tech/topics/vercel.md>), [Vite](<https://devfeed.tech/topics/vite.md>), [configuration](<https://devfeed.tech/topics/configuration.md>), [TypeScript](<https://devfeed.tech/topics/typescript.md>)

Tags: [config](<https://devfeed.tech/tags/config.md>), [guide](<https://devfeed.tech/tags/guide.md>), [knowledge-base](<https://devfeed.tech/tags/knowledge-base.md>), [persistence](<https://devfeed.tech/tags/persistence.md>), [queue](<https://devfeed.tech/tags/queue.md>), [sdk](<https://devfeed.tech/tags/sdk.md>), [typescript](<https://devfeed.tech/tags/typescript.md>), [vercel](<https://devfeed.tech/tags/vercel.md>), [vite](<https://devfeed.tech/tags/vite.md>), [workflow](<https://devfeed.tech/tags/workflow.md>)

## AI overview

Vercel's Workflow SDK now supports TanStack Start applications. Because TanStack Start uses Vite and Nitro, the existing workflow/vite plugin can be added to the Vite configuration. Developers can then define durable, resumable workflow and step functions in TypeScript that survive restarts, sleep for days, and retry on failure, while the plugin handles compilation, queue configuration, and persistence.

## Source excerpt

Workflow SDK now supports TanStack Start applications on Vercel. TanStack Start is built on Vite and Nitro, so the existing workflow/vite plugin works directly. Add it to vite.config.ts alongside tanstackStart(). From there, write workflow and step functions in standard TypeScript with "use workflow" and "use step". They run as durable, resumable operations that survive restarts, sleep for days, and retry on failure, with compilation, queue configuration, and persistence handled by the plugin. Read the TanStack Start guide to learn more and create your first durable workflow, or browse TanStack resources in the Vercel Knowledge Base. Read more