What problem does it solve? Deploying a frontend and backend as one Vercel project requires coordinating the services key, ordered rewrites, and private service bindings in vercel.json, and misconfiguration causes routing 404s, unreachable backends, or broken previews. ## Core Features & Use Cases - Service Definition: Define multiple services with root, entrypoint, framework, and container runtime settings in a single vercel.json. - Routing & Ingress: Configure ordered top-level rewrites, host-based subdomain routing, and service-scoped rewrites for prefix stripping and SPA fallbacks. - Private Bindings: Connect services privately with deployment-aware binding environment variables that bypass the public Firewall and CDN. - Use Case: Put a Next.js frontend and a FastAPI backend in one project, route /api to the backend, and let the frontend call it privately through a BACKEND_INTERNAL_URL binding. ## Quick Start Ask the AI to configure a vercel.json that deploys your frontend and backend together as Vercel Services with an /api rewrite and a service binding.