Webflow Cloud: the complete 2026 guide to understand, choose and deploy

Webflow Cloud — complete 2026 guide

Webflow has long been a perfect tool for marketing and brochure sites, and certain SaaS products without custom logic. But the moment a project needed more, you had to step outside Webflow and bolt on a Vercel, Netlify, or Cloudflare Pages alongside. Webflow Cloud changes precisely that. It's the official Webflow platform to deploy a real Astro or Next.js application under the same domain as your Webflow site, with no server to manage and no third-party host to coordinate.

Webflow has long been a perfect tool for marketing sites, brochure sites, and certain SaaS products without custom logic. But the moment a project needed something more — a dynamic calculator, a member area, a custom funnel, an AI integration, on-the-fly generated pages — you had to step outside Webflow and bolt on a Vercel, Netlify, or Cloudflare Pages alongside. Two domains, two bills, two pipelines, and a fragmented client experience.

Webflow Cloud changes precisely that. It's the official Webflow platform to deploy a real Astro or Next.js application under the same domain as your Webflow site, with no server to manage and no third-party host to coordinate.

This guide is built to give you an actionable overview: what it actually does, what you can now build that you couldn't before, how much it costs, where the limits are, how it compares to Vercel and Netlify, and — perhaps most importantly — when a Webflow Cloud deployment can stay in-house and when it's better handed to an agency that has shipped a few already.

What is Webflow Cloud?

Webflow Cloud is the official Webflow platform to deploy full-stack applications, powered by Cloudflare Workers.

Concretely, it lets you do three things Webflow alone could never do:

  • host an application (Astro or Next.js) directly alongside your Webflow site;
  • mount that app on a sub-path of the same domain — for example mysite.com/app or mysite.com/calculator, with no reverse proxy hack;
  • use server-side services (SQLite database, Key-Value Store, Object Storage) without provisioning Supabase or Firebase on the side.

It's not a Webflow replacement. It's an extension of Webflow into the world of applications, designed so your clients, your marketing team, or your leadership no longer have to understand why your "site" needs another service underneath.

Why Webflow launched it

The strategic context matters because it says a lot about the tool's longevity.

Webflow is being squeezed on two fronts. On one side, AI generators (Lovable, V0, Bolt) ship complete apps in a few prompts, but with limited control as soon as you want to industrialize. On the other side, modern full-stack frameworks — Next.js, Astro, Remix — have become accessible to non-experts, with two-click deploys on Vercel or Cloudflare. Webflow risked being stuck in the middle: too limited for apps, too complex for simple sites.

Webflow responded by opening its ecosystem. Webflow Cloud is the centerpiece of that opening. In September 2025, the brand donated $150,000 to Astro and became its official sponsor partner (announcement). And in January 2026, Cloudflare — which powers Webflow Cloud — acquired the Astro team, further reinforcing the Astro / Cloudflare Workers / Webflow Cloud alignment. The whole ecosystem is now pushing in the same direction.

This changes the conversation with clients who hesitated to stay on Webflow for their next project. You no longer have to choose between "stay in Webflow" and "move to real dev." You can do both in the same deliverable, on the same domain, in the same invoice.

What you can do now that you couldn't before

This is the question that decides. Here's the concrete shift, by profile.

For a founder or product owner. You stop arbitrating between "it has to be pretty and easy to edit" and "it has to do X." Both can now coexist on the same domain. A Designer-side marketing site that evolves over time, a code-side calculator app or member area — two worlds, one product.

For a marketing team. You keep Webflow for what you already do well there: campaign pages, blog posts, editorial landing pages. But you can now request a specific feature — a dynamic quiz, a quote configurator, an AI integration — without spinning up a separate Vercel project. Everything is on mysite.com/..., so your cookies, your pixels, your tracking, your cookie banner stay unified.

For a CTO or dev lead. You get a playground where your team can ship Astro or Next.js in an edge environment, with native database and storage, without managing a second infrastructure. You also pool your bandwidth with your existing Webflow plan. And marketing keeps publishing autonomously without touching your code.

For a Webflow agency or freelancer. You can now accept projects you used to subcontract to a backend dev, or turn down. Calculator, configurator, member area, AI integration, client dashboard: all of that now fits inside an extended Webflow deliverable. You stay the client's single point of contact, and you bill higher without changing your stack.

Who it's built for (and who it isn't)

Webflow Cloud isn't universal. There are situations where it's the perfect tool, and others where it would be oversized or unfit.

It's built for you if:

  • you already have a Webflow site (or a planned Webflow project) and a precise dynamic need that doesn't fit native Webflow features;
  • you want your entire product to live under a single domain, with no app.mysite.com subdomain to explain;
  • your server-side logic needs are moderate: forms wired to a CRM, calculators, configurators, light member areas, AI integrations, programmatic SEO.

It's probably not for you if:

  • you're starting from scratch with no Webflow project: Vercel, Netlify, or Cloudflare Pages remain better for purely application use cases;
  • you need instant rollback in case of a production incident;
  • your stack is built on Remix, SvelteKit, or Nuxt — not yet supported as of today;
  • you're building a complete multi-tenant SaaS with dozens of microservices.

If you're in the first group, the rest of this article should be useful. If you're in the second, you can save time by stopping here — or by reading the comparison section below to confirm the diagnosis.

7 use cases that are worth it

These are the projects for which Webflow Cloud becomes especially relevant.

Dynamic calculator or configurator. A pricing calculator, a quote simulator, a lead-qualification quiz, a product configurator. Heavy to maintain in custom Webflow code, natural in Astro or Next.

Light member area. Not a full Stripe Subscriptions setup, but gated access to reserved content: passwordless login, personal dashboard, resource downloads, a member-side mini-CRM.

Programmatic SEO. Generating 500 or 5,000 pages from a database — directory, comparator, product catalog, location pages. Astro renders statically, Webflow handles the marketing around it.

Smart capture page. A paid acquisition landing page with a form that pushes leads in real time to a CRM, an n8n workflow, or a Slack channel, leaving no operational trace on the Webflow CMS side.

AI integration in production. An endpoint that calls the Claude or OpenAI API from a user prompt, with rate limiting and logs. All under the same domain as the marketing site — so the same cookies, the same tracking, the same cookie banner.

Internal tool. A team mini-CRM, a pilot dashboard, a one-click data export, a light admin panel. No need to spin up another service: host it next to the public site, on a /admin or /team URL.

Inbound webhooks and integrations. Receive a Stripe, Calendly, Make, or n8n webhook that triggers a business action — send an email, update a database, publish a page.

How it works, in 2 minutes

You don't need to be a developer to grasp the essentials.

The runtime. Webflow Cloud runs on Cloudflare Workers, Cloudflare's edge environment. Concretely, your code executes on a global network, as close to the user as possible. It's fast and reliable — but it imposes constraints (no classic Node.js, no persistent file system).

Supported frameworks. Today, two options: Astro or Next.js. Astro fits sites that are mostly static with a few server routes. Next.js fits complete apps with a lot of server-side logic. For the rest — Remix, SvelteKit, Nuxt — you'll have to wait.

The mount path. This is the key concept. When you create an environment, you define the URL where your app will be mounted: mysite.com/app, mysite.com/dashboard, mysite.com/calculator. That path then has to be configured at the same place inside the app's code — otherwise assets won't load.

Native storage. Webflow Cloud includes three services rare in direct competitors: SQLite for structured data, Key-Value Store for sessions and counters, Object Storage for files. They're included in all Webflow site plans, with limits that vary by tier.

Technical prerequisites (for dev team reference): Astro up to v5, Next.js from v15, Node.js 22+, npm only (no yarn, no pnpm). The @astrojs/cloudflare or @opennextjs/cloudflare adapter is required.

Webflow Cloud vs Vercel, Netlify, and Cloudflare Pages

Comparing Webflow Cloud to established deployment players helps you decide on purpose rather than by default.

Vercel. Still superior on pure Developer Experience: one-click rollback, universal framework support, advanced perf dashboards, preview deployments per PR. Webflow Cloud doesn't have all of that. Pick Vercel if you're starting from scratch with no Webflow, or if your team is used to its ecosystem.

Netlify. Very close to Vercel, slightly less modern on runtime, but a strong identity around forms and functions. Same criteria as Vercel: if no Webflow, Netlify remains relevant.

Cloudflare Pages directly. Webflow Cloud runs on top of it. You can deploy directly on Cloudflare Pages with the same stack — you just lose the native Webflow integration, DevLink (React code generation from your Designer components), and the automatic mount path under your Webflow domain. Pick Cloudflare Pages if you want the edge runtime without Webflow.

Webflow Cloud. The trade-off becomes obvious: you win only if you start from an existing or planned Webflow site. Everything else — tooling maturity, integration depth, rollback simplicity — leans toward the competition.

Criterion Webflow Cloud Vercel Netlify Cloudflare Pages
Native Webflow integration (DevLink) Yes No No No
Same domain as Webflow site Yes Subdomain Subdomain Subdomain
Native storage included SQLite + KV + Object Paid add-on Paid add-on Configurable
Bandwidth pooled with site plan Yes No No No
One-click rollback No (Git revert) Yes Yes Yes
Global edge Cloudflare Vercel Edge Netlify Edge The widest
Tooling maturity Recent Very mature Mature Mature
Supported frameworks Astro v5, Next.js v15+ 35+ 30+ All

How much it really costs

Webflow Cloud is included in every Webflow site plan, with a usage-based model on top.

Three meters are tracked:

  • Bandwidth — the volume of data served.
  • Requests — the number of requests handled by Workers.
  • CPU minutes — compute time consumed. The trickiest meter: a slow or poorly optimized route eats minutes without you noticing.

Webflow Cloud usage consumes the limits of your existing Webflow site plan — there's no separate subscription. If you were already comfortable on your plan, you keep margin. If you're launching an ambitious project on Cloud, anticipate a possible bump to a higher tier.

Surge protection. If you exceed your quota in a given month, Webflow doesn't cut service. You get a tolerance window, then two consecutive months above triggers an automatic plan upgrade. Reassuring for prod, less so for invoice predictability.

The catch. Webflow doesn't publish detailed pricing as we write this. For a classic marketing site with a light app (forms, calculator), you'll likely stay within the included plan. For programmatic SEO of 10,000 pages with SSR on every visit, you risk going over and you should anticipate.

Can't estimate the cost of your Webflow Cloud project? In 30 minutes, we'll look at your case and give you an honest estimate: included plan, or which volume forces an upgrade. Book the call.

The 6 places it breaks in production

Webflow Cloud is a young platform. The documentation is solid but incomplete on certain points where teams typically lose a day or several. Here are the six to anticipate.

1. Mount path configuration must match exactly. Webflow Cloud mounts your app on a chosen URL (/app, /calculator, etc.). That URL has to be configured in the app's code at the same place. One typo and all your assets 404 — without an explicit error, just a strangely styled blank page.

2. Trailing slash can create a redirect loop. If your app's root page is rendered as a static file, Cloudflare Pages automatically appends a trailing slash to the URL. The Webflow Cloud reverse proxy does the opposite and strips it. Result: infinite loop. The clean fix is to render that page in SSR rather than static — which the official Webflow Cloud starter implicitly recommends.

3. Environment variables are only available at runtime. Your secrets and API keys are injected only when the app runs, not during the build. It sounds harmless, but it's a recurring source of bugs: if your build checks for an API key's existence, it will fail. Anything depending on secrets has to wait for execution.

4. The axios library doesn't work. Use fetch. The Cloudflare Workers runtime doesn't support axios properly — you get cryptic errors in production while everything works in dev. Get used to fetch, the native API, faster and lighter.

5. The Webflow site has to be published to serve the app. As long as your associated Webflow site isn't published on the right domain, the application isn't reachable at its public URL. It sounds obvious, but in practice, when testing on a new site, you forget. First troubleshooting step: check that the Webflow site is actually live.

6. Rollback happens via Git, not via a dashboard. Vercel has a "Rollback to previous deployment" button. Webflow Cloud doesn't (yet). If your latest deployment breaks production, you have to revert to the previous commit on the connected branch and wait for the redeploy. Count 90 to 180 seconds of propagation before the reverted version is live. To anticipate in any production rollout plan.

On a simple project, those six points cost a dev 5 to 10 hours when discovered live. On a larger project — member area, programmatic SEO, AI integration — it's more like 5 to 10 days, because the pitfalls compound and you search in the wrong place. If your project is in the second category, we can audit it in 30 minutes and you leave with the list of technical risks to anticipate.

DIY or get help?

This is probably the most useful practical question to settle before getting started. Here's an honest grid, with no gratuitous push to outsource.

Doable in-house without specialized help:

  • a simple dynamic page: a form that posts to an endpoint, an edge function, an API call;
  • a light calculator or configurator, if you have a dev comfortable with Astro or Next.js on hand;
  • a POC or experimental project with no immediate production stakes.

For these cases, the Webflow Cloud documentation + the official starter + this article are enough. A junior dev comfortable with the framework can ship in a day to a week depending on complexity.

Better with help:

  • a member area with authentication, user data, payments;
  • programmatic SEO above 1,000 pages, with sitemap, hreflang, clean indexing;
  • AI integration in production with rate limiting, logs, prompt security;
  • migration from Vercel or Netlify while keeping URLs and SEO intact;
  • an internal app with business rules, multi-role, audit trail;
  • any project with a tight production window and a reliable rollback requirement.

Why do these cases fall outside DIY? Because the six pitfalls above add up to other architecture decisions (where to put the data, how to handle sessions, how to secure a route, how to test a migration without breaking prod). A team discovering the stack spends a week on decisions that are trivial to someone who has already shipped two or three times.

Our method for a Webflow Cloud project

Scroll is a Webflow agency based in Paris that combines Webflow design and custom application development. Here's how we work on a Webflow Cloud project.

1. Scoping (1 to 2 weeks). We start from your need and decide the trade-offs: Webflow Cloud or Vercel? Astro or Next.js? Which database? Which CMS for which part of the content? You leave with a scoping note, a macro-roadmap, and a fixed quote — not an open-ended T&M.

2. Design + development (2 to 6 weeks depending on complexity). The Webflow site and the full-stack app advance in parallel, on the same domain, with a staging environment accessible every day. You see the app take shape in real time, you give feedback in real time, we avoid end-of-project surprises.

3. Production rollout. Mount path configuration, environment variables, CRM or AI integrations, load tests, rollback plan. Production doesn't ship from an improvised Friday-evening push.

4. Handover and maintenance. Up-to-date documentation, clean Webflow and GitHub access, documented modification process for your team. You leave with a maintainable project — not a patchwork that scares people six months later.

On sensitive topics (migration SEO, member-area security, CPU-minutes optimization to avoid paying more than necessary), we take strong positions because we've already hit the pitfalls. That's what distinguishes an agency that has shipped on Webflow Cloud from one that's discovering it.

Conclusion

Webflow Cloud isn't revolutionary. It's the logical conclusion of a trajectory: Webflow opens its product to full-stack apps without forcing its users to learn another platform.

For agencies and freelancers already working on Webflow, it's a chance to expand scope without changing tools. For companies with a Webflow site and a custom need, it's the end of the "do we keep Webflow or do we switch?" dilemma. For pure developers, it's a new playground — useful as long as you accept its current limits.

What the official documentation doesn't say is that most projects don't fit entirely in pure static. The moment there's a form posting to a CRM, a dynamic calculator, an AI integration, or a webhook endpoint, you step outside standard Webflow. Webflow Cloud makes those cases natural instead of exotic.

Got a project in mind?

Scroll designs Webflow sites and plugs Astro or Next.js applications into them, deployed in production on Webflow Cloud. It's a rare combination: most agencies do Webflow or custom dev — not both in the same project, on the same domain.

In a 30-minute call (free, no commitment), you leave with:

  • a clear stance: yes, no, or under conditions;
  • a duration and complexity estimate, calibrated to your specific case;
  • the list of technical pitfalls to anticipate if you move forward;
  • an honest recommendation between Webflow Cloud, Vercel, or custom dev elsewhere.

No quote that sleeps in an inbox for three weeks: you leave the call with enough material to decide right away.

Estimate my Webflow Cloud project (30 min, free)

Icône FAQ
Faq
What is Webflow Cloud in one sentence?
Flèche bas

Webflow Cloud is the official Webflow platform to deploy an Astro or Next.js application under the same domain as your Webflow site, without managing Vercel or Netlify on the side.

Is Webflow Cloud free?
Flèche bas

Webflow Cloud is included in every Webflow site plan, with usage tracked on three meters (bandwidth, requests, CPU minutes) that consume the limits of your existing plan. The basic quota fits a typical site; beyond that, the plan is upgraded automatically by Webflow.

What's the difference between Webflow Cloud and Vercel?
Flèche bas

Vercel is more mature on Developer Experience: one-click rollback, universal framework support, perf dashboards. Webflow Cloud wins when you start from a Webflow site: everything is on the same domain, bandwidth is pooled with your plan, and three storage services (SQLite, Key-Value, Object Storage) are included.

Can you deploy a Next.js or React app on Webflow Cloud?
Flèche bas

Yes. Webflow Cloud officially supports Astro v5 and Next.js v15+, with an edge runtime based on Cloudflare Workers. API routes and server rendering work, but with Node.js limits: axios unsupported, ISR still experimental, some native modules incompatible.

What are the Webflow Cloud limits to know about?
Flèche bas

No one-click rollback (you have to revert to the previous Git branch), Node.js partially supported, axios to replace with fetch, ISR still experimental on Next.js, the associated Webflow site must be published to serve the app, and only npm is supported for the build.

Do you need an agency to deploy on Webflow Cloud or can you do it yourself?
Flèche bas

For a simple deployment — a form, a calculator, a dynamic page — a junior dev comfortable with Astro or Next.js can do it in a day. For a more complete project — member area, programmatic SEO, payments, AI integration in production — going through an agency that has already shipped on Webflow Cloud saves several days of classic pitfalls and guarantees a maintainable deliverable.

Publié par
Scroll Team
A project ?
Scroll is there for you!
Share this article:
Estimate my Webflow Cloud project
Scroll is there for you!
You could
also like
Icône FAQUn téléphone, pour prendre contact avec l'agence Scroll