# Support for TanStack Start

**Published:** November 10, 2025 | **Authors:** Austin Merrick, Marcos Grappeggia

---

Vercel detects and supports TanStack Start applications, a full-stack framework powered by TanStack Router for React and Solid.

[Create a new TanStack Start app](https://vercel.com/templates/starter/tanstack-start-on-vercel) or add nitro() to vite.config.ts in your existing application to easily deploy your projects:

**vite.config.ts**
```typescript
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
import { defineConfig } from 'vite'
import viteReact from '@vitejs/plugin-react'
import { nitro } from 'nitro/vite'
 
export default defineConfig({
  plugins: [
    tanstackStart(),
    nitro(),
    viteReact(),
  ],
})
```

TanStack Start apps on Vercel use [Fluid compute](https://vercel.com/fluid) with [Active CPU pricing](https://vercel.com/blog/introducing-active-cpu-pricing-for-fluid-compute) by default. This means your TanStack Start app will automatically scale up and down based on traffic, and you only pay for what you use, not for idle function time.

Visit the [TanStack Start on Vercel documentation](https://vercel.com/docs/frameworks/full-stack/tanstack-start) to learn more

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)