Support for TanStack Start

1 min read

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 or add nitro() to vite.config.ts in your existing application to easily deploy your projects:

vite.config.ts
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 with Active CPU pricing 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 to learn more