Skip to content
New Project

Vite + FastAPI Starter

A monorepo with a Vite frontend and a public FastAPI backend.

DeployView Demo

Vite + FastAPI

This example shows a monorepo using Vercel Services with a Vite frontend and a public FastAPI backend.

Demo

https://vite-fastapi-services.vercel.app/

How it works

The project is structured as a monorepo:

vite-fastapi/
├── backend/
├── frontend/
└── vercel.json

Services are configured in vercel.json:

{
"services": {
"frontend": { "root": "frontend/", "framework": "nextjs" },
"backend": { "root": "backend/", "entrypoint": "main:app" }
},
"rewrites": [
{
"source": "/svc/api/:path*",
"destination": { "service": "backend" }
},
{
"source": "/(.*)",
"destination": { "service": "frontend" }
}
]
}

Vercel will route requests to the backend service for URL with paths starting with /svc/api/ and to frontend for all other URLs.

Running Locally

vercel dev

Open http://localhost:3000 and try:

  • /svc/api/status (FastAPI route)

Learn More

  • Vercel Services - learn how services work on Vercel.
  • Vite Documentation - learn about Vite features and API.
  • FastAPI Documentation - learn about FastAPI features and API.
GitHub
Ownervercel
Repositoryexamples
LicenseView License
Use Cases
Starter
Monorepos
Stack
React
FastAPI

Related Templates

eve Personal Agent

Open source personal agent template. Web chat, Slack, iMessage, Linear, and long-term memory.
eve Personal Agent thumbnail

eve Content Agent

Draft blog posts, LinkedIn posts, release notes, and newsletters in your team's house voice without leaving Slack.
eve Content Agent thumbnail

eve Chat Template

A persisted Next.js chat template for eve, built with shadcn/ui, Tailwind CSS, Streamdown, Better Auth, Drizzle, and Neon.
eve Chat Template thumbnail
DeployView Demo