Where to Host an Exported Framer Site
Once your Framer site is exported to static files, hosting is the easy part. The export is a folder of HTML, CSS, JS, images, and fonts — every static host on the internet can serve it, and the free tiers of the big four are more generous than the Framer plan you were paying for.
This is the short version of the hosting guide I'd give a friend. If you came here from Webflow instead, the Webflow version of this guide goes deeper on each host — the tradeoffs are identical, because by the time a site is static files, its origin stops mattering.
The quick answer
| Host | Best at | Free tier |
|---|---|---|
| Netlify | Fastest first deploy (drag & drop) | Generous — fine for any marketing site |
| Vercel | Sites that may grow into Next.js apps | Same |
| Cloudflare Pages | Global performance, high traffic | Effectively unlimited bandwidth |
| GitHub Pages | Personal sites, docs, archives | Free, with commercial-use caveats |
Netlify — deploy before your coffee cools
- Unzip your export
- Open app.netlify.com/drop
- Drag the folder onto the page
- Live URL in ~10 seconds

Netlify has one feature that matters extra for ex-Framer sites: Netlify Forms. Framer's form backend stays behind when you export, and Netlify can accept those submissions without you running any server — add a netlify attribute to the form tag and you're done.
Vercel — if the site will keep evolving
npm i -g vercel
cd path/to/exported-site
vercel --prod
The pitch for Vercel is the growth path: if you ever rebuild the exported site as a Next.js app — which the export's MDX-formatted CMS content is designed for — you're already on the right platform.

Cloudflare Pages — if traffic is the concern
Free-tier bandwidth is effectively unlimited, and your site is served from Cloudflare's edge everywhere on earth. Deploy by connecting a Git repo or with npx wrangler pages deploy. Pick this if your Framer bill was climbing because of traffic.
GitHub Pages — fine for personal sites
Push the export to a repo, enable Pages in settings, done. No custom response headers and a soft commercial-use policy make it a "personal projects" answer, but for a portfolio or docs it's unbeatable-free.
What changes after leaving Framer
- Forms need a new backend. Netlify Forms, Formspree, or a serverless function. Do this before flipping DNS — it's the only thing that visibly breaks.
- Redirects move to the host. Any redirects you set in Framer need re-creating:
_redirectson Netlify,vercel.jsonon Vercel,_redirectson Cloudflare Pages. - Your CMS workflow changes. Static means edits happen in files, not the Framer editor. The export's Markdown/MDX content is exactly what AI coding tools and static site generators expect — many people find editing a Markdown file in Cursor faster than the visual editor.
- Costs drop to zero. A typical marketing site fits comfortably in every free tier above. The $10–$30/month you were paying Framer becomes $0/month.
The part people forget: keep a re-export habit
If you keep the Framer project alive for design work, remember the exported copy doesn't update itself. Re-export after significant publishes — with SiteDownload, re-exports of a paid site are free forever, so this is a two-minute habit, not a recurring bill.