TheRusskiy
TheRusskiy

Reputation: 1101

From what regios does Vercel serve Next.js SSR responses?

When you deploy your Next.js app via the Vercel platform, in what region is the server placed? I understand that for static content they use a CDN, but what about the good ol' SSR? In my use case, I have an API server that is located on a Google Cloud VM in a specific region and I want to minimize the roundtrip between a Next.js server and the API.

Thank you and sorry if I missed it in the docs.

Upvotes: 2

Views: 1273

Answers (1)

paulogdm
paulogdm

Reputation: 1801

You are looking for the "regions" configuration: https://vercel.com/docs/configuration#project/regions

Upvotes: 1

Related Questions