App & Framework Hosting is now generally available in all 30+ regions.

App Hosting

Where to Host a Next.js App in 2026 (Vercel Alternatives Compared)

By Adam Eastwood · · 10 min read

Quick answer

Vercel remains the best developer experience for Next.js — but not the only good home for it. Netlify and Cloudflare offer similar workflows, a VPS gives the lowest cash cost, and flat-priced managed platforms suit teams that want predictable bills and UK data residency. The right choice depends on traffic shape, budget certainty, and where your data must live.

Next.js is built by Vercel, and hosting it on Vercel is the path of least resistance — which is precisely why “Vercel alternatives” is such a common search. Some people hit a surprising invoice, some need their data in a specific country, and some simply want a server they can reason about. This guide compares the realistic options in 2026 without pretending Vercel is bad at its job, because it is not.

Full disclosure of the obvious: we run flat-priced UK Next.js hosting ourselves, and it appears in the comparison below on the same terms as everyone else — including the things Vercel does that we deliberately do not.

What does Vercel actually do better than everyone else?

Any honest comparison starts here. Vercel's strengths are real and, in places, unmatched:

  • Per-PR preview deployments. Every pull request gets its own live URL automatically, with comments wired into GitHub. This remains the single best feature of the platform and the hardest to replicate elsewhere.
  • Zero-config alignment with the framework. New Next.js capabilities — streaming, partial prerendering, the latest caching semantics — work on Vercel on day one, because the same company ships both.
  • A genuinely good global edge network with built-in image optimisation, analytics, and instant rollbacks.

The friction is commercial rather than technical. Pricing is usage-based across multiple meters (function invocations and duration, bandwidth, image optimisation, and more), which makes the bill hard to predict — a traffic spike or a misbehaving crawler can move it materially. Team plans are priced per seat, which grows with your headcount rather than your traffic. And compute runs in the regions Vercel operates: fine for most apps, a genuine blocker if you have strict data-residency requirements.

How do the main alternatives compare?

Vercel alternatives for Next.js hosting compared, August 2026.
OptionPricing modelPreview deploysOps effortBest for
VercelUsage-based + per-seatPer-PR, automaticNoneTeams that value DX above bill predictability
NetlifyUsage-based + per-seatPer-PR, automaticNoneSimilar workflow, second opinion on pricing
Cloudflare WorkersUsage-based, aggressivePer-branchLowCost-sensitive apps that fit the Workers runtime
AWS (SST/Amplify)Pure usageConfigurableMedium–highTeams already deep in AWS
VPS (self-host)Flat, very lowBuild your ownHighSide projects and control maximalists
Flat-priced managed (e.g. HostPanel)Flat monthlyStaging environmentNonePredictable bills, UK data residency

When is Netlify or Cloudflare the better fit?

Netlify is the closest like-for-like swap: Git-driven deploys, per-PR previews, and serverless rendering for Next.js via its own runtime. Its pricing has the same usage-based shape as Vercel's, so you are choosing on ecosystem and taste more than on bill mechanics. Support for bleeding-edge Next.js features historically trails Vercel by a little, which matters if you upgrade the framework the week each major version ships.

Cloudflare is the most interesting alternative on price. The OpenNext adapter runs Next.js on Workers, static assets are effectively free to serve, and compute pricing is aggressive. The caveat is the runtime: Workers is not a full Node.js environment. Compatibility has improved enormously, but packages that rely on native modules or less common Node APIs still need checking, and framework updates can lag while the adapter catches up. Prototype your actual dependency tree before committing.

What about AWS or a VPS?

Running Next.js on AWS via SST or Amplify gives you pure usage pricing and every knob AWS owns. Done well it is cheap and scales beautifully; the cost is complexity — you now own IAM, CloudFront behaviours, and Lambda cold-start tuning. It makes sense when your organisation already lives in AWS, and rarely otherwise.

Self-hosting on a VPS is the opposite trade. next build with the standalone output produces a self-contained Node.js server that runs happily in a small container behind a reverse proxy such as Caddy or Nginx; SSR, API routes, middleware and ISR all work. A £5–10 VPS handles a surprising amount of traffic. What you give up is everything around the code: deploys, TLS, monitoring, security patches, and cache invalidation across instances are all yours now. For a side project that is half the fun. For a business, count your hours honestly before calling it the cheap option.

When does a flat-priced managed platform make sense?

Between “usage-based hyperscaler” and “do it all yourself” sits a quieter category: managed platforms that run your Next.js server for a flat monthly price. You trade Vercel's per-PR preview URLs for a persistent staging environment — one long-lived pre-production deployment rather than one per pull request — and in exchange the bill is a number you know in advance, with no per-seat fees and no usage meters to watch.

The residency angle matters more than people expect. If your users, your contracts, or your compliance team require data processed in the UK, a platform that runs your app and database in a London datacentre answers the question directly, where a global edge platform answers it with an architecture diagram. That is not a reason for everyone to switch; it is a reason the category exists.

Be equally honest about the limits: a flat-priced platform will not give you a preview URL on every pull request, a 300-location edge network, or day-one support for framework features that shipped last Tuesday. If those are load-bearing parts of your workflow, Vercel is still the right answer, and it is better to know that going in.

How should you actually decide?

  • Static or mostly-static site? Nearly anywhere is fine and nearly free — pick on workflow, not capability.
  • Per-PR previews central to your team's review culture? Vercel or Netlify, and accept the pricing model as the cost of the workflow.
  • Cost-sensitive with high traffic? Price out Cloudflare first, then a VPS if you have the operational appetite.
  • Need predictable bills or UK data residency? A flat-priced managed platform or a UK VPS — decided by how much ops work you want to own.
  • Already all-in on AWS? SST, and staff it properly.

Frequently asked questions

Is Vercel the best place to host Next.js?

For developer experience, yes — Vercel builds Next.js, and per-PR preview deployments, zero-config builds, and first-class support for the newest framework features are genuinely best in class. Whether it is the best choice for you depends on how you feel about usage-based billing, per-seat pricing, and where your data needs to live.

Can you self-host Next.js with all features working?

Almost all. A Node.js server (typically the standalone output in a container) supports SSR, API routes, middleware and ISR out of the box. The gaps are operational rather than functional: you provide your own CDN, image optimisation tuning, and — if you run multiple instances — a shared cache handler for ISR revalidation.

Does Next.js run well on Cloudflare?

Increasingly well. The OpenNext Cloudflare adapter runs Next.js on Workers with support for SSR, ISR and middleware, and pricing is aggressive. The trade-off is that Workers is not a full Node.js runtime, so some npm packages and Node APIs need care, and very new Next.js features tend to land there after they land on Vercel.

What is the cheapest way to host a Next.js app?

For a static or mostly-static site, free tiers on Cloudflare Pages, Netlify or Vercel cost nothing. For a server-rendered app with steady traffic, a small VPS running the standalone build is usually cheapest in cash terms — provided you cost in your own time for patching, deploys, and monitoring, which is the part people forget.

The bottom line

There is no single best home for a Next.js app in 2026 — there is a best home for your combination of traffic, team, budget shape, and residency requirements. Vercel earns its default status on developer experience and pays for it in bill predictability; Cloudflare wins on price with runtime caveats; a VPS wins on cash and loses on hours; flat-priced managed platforms win on certainty and residency and skip the per-PR previews. Decide which of those trade-offs you are actually making, and the shortlist writes itself.