VercelVercel
Menu

Services routing and communication

Last updated March 14, 2026

When a project has multiple services, Vercel merges their routes into a single routing table and distributes incoming requests based on each service's route prefix.

Each web service has a routePrefix that determines which requests it receives. Vercel evaluates prefixes from longest to shortest (most specific first), with the primary service (prefix /) as the catch-all.

For example, with a Next.js frontend at / and a FastAPI backend at /svc/api:

RequestHandled byApplication receives
GET /dashboardFrontend (Next.js)/dashboard
POST /svc/api/usersBackend (FastAPI)/svc/api/users
GET /svc/api/docsBackend (FastAPI)/svc/api/docs

When you configure routePrefix, Vercel automatically mounts backend services at that base path, so you do not need to configure a framework-specific root path for backends.

For frontend frameworks such as Next.js mounted on a subpath, you still need to configure the app's base path (for example, basePath in next.config.js) to match routePrefix.

Vercel automatically generates environment variables so services can communicate with each other.

For each web service, Vercel injects:

VariableExample valueAvailabilityUse case
{SERVICENAME}_URLhttps://your-deploy.vercel.app/svc/apiServer-side in servicesServer-side requests between services
NEXT_PUBLIC_{SERVICENAME}_URL/svc/apiClient-side in Next.jsClient-side requests from the frontend

For example, for a project with two services, a Next.js "frontend" mounted at the root and a FastAPI "backend" mounted at "svc/api", Vercel would generate the following environment variables:

VariableValueAvailabilityUse case
FRONTEND_URLhttps://your-deploy.vercel.appServer-side in servicesServer-side redirects to the frontend
BACKEND_URLhttps://your-deploy.vercel.app/svc/apiServer-side in servicesServer-side requests to the backend
NEXT_PUBLIC_FRONTEND_URL/Client-side in Next.jsClient-side requests to the frontend
NEXT_PUBLIC_BACKEND_URL/svc/apiClient-side in Next.jsClient-side requests from the frontend

Client-side variables use relative paths (the route prefix only) to avoid CORS issues. The browser resolves them against the current origin, so they work across preview deployments and custom domains.

If you define an environment variable with the same name in your project settings, your value takes precedence.


Was this helpful?

supported.