What problem does it solve? Deploying a backend (Python, Go) together with a frontend (Next.js, Vite) usually requires separate projects, domains, and CORS configuration. This Skill structures a single Vercel project that builds and routes multiple independent services under one domain. ## Core Features & Use Cases - Multi-service configuration: Defines services in vercel.json via the experimentalServices field with entrypoint and routePrefix settings. - Runtime guidance: Covers FastAPI/Flask/Django Python services and Go services, including framework detection rules and dependency layout. - Routing and environment variables: Explains longest-prefix routing, auto-generated service URL variables, and local development with vercel dev -L. - Use Case: Combine a FastAPI backend mounted at /api with a Vite React frontend at the root path, deployed as one Vercel project with shared environment variables. ## Quick Start Set up a Vercel multi-service project with a FastAPI backend and a Vite React frontend deployed under a single domain.