How to Deploy AI-Built Websites in 2026: 5 Tools, 5 Steps
Deploy sites from Lovable, Bolt.new, Cursor, v0, or Claude in five steps. Finish with a live 2026 website on EU hosting, HTTPS, and your own custom domain.
The AI-build-a-website tools shipped in 2024 and 2025 changed how prototypes get made. You describe what you want, the model writes React and Tailwind, and a working preview appears in seconds. The catch is the same for every one of them: the preview is not the production site. To actually ship, you need a real host with a real domain and real uptime.
This guide is the deployment side of that workflow. It covers five tools and a five-step path from generated files to a live HTTPS website on your own domain.
Who this is for
You've built something with Lovable, Bolt.new, Cursor, v0, or Claude artifacts. You want to put it on a real domain. You want to know what actually works without burning a weekend on YAML.
If you're deploying a hand-coded site with no AI involvement, most of this still applies, but the AI-specific patterns at the end will be irrelevant.
The shape of an AI-built site in 2026
Almost every AI-build tool produces the same artefact: a static or single-page app, usually Vite plus React plus Tailwind. The differences are surface-level. Lovable wraps it in a managed editor. Bolt.new compiles it in your browser. Cursor outputs it as a normal local repo. v0 generates components you compose into a project. Claude artifacts are typically a single HTML file or a small React tree.
Here's the shape:
| Tool | Output | Build step |
|---|---|---|
| Lovable | Vite + React + Tailwind project | npm run build |
| Bolt.new | Vite + React + Tailwind ZIP | npm run build |
| Cursor | Whatever the developer wrote | varies |
| v0 | React + Tailwind components | varies |
| Claude artifacts | Single HTML or React tree | none for HTML |
Once you have the build output (a dist/, build/, out/, or a single HTML file), every host serves it the same way. The deploy problem reduces to "upload static files, point a domain, get HTTPS."
Step 1: Get the build output
The first place builders get stuck is realising the AI tool's preview is not the deployable artefact. The preview runs in a sandbox or hot-reload server. To deploy, you need the build.
For most tools, that means downloading the project and running:
npm install
npm run buildThis produces dist/ (Vite), build/ (Create React App), or out/ (Next.js static export). That folder is what you upload.
For Claude artifacts that are pure HTML, you skip the build. Save the file as index.html and you're done.
Step 2: Pick a host
The 2026 market for static and SPA hosting splits into three types:
- The big platforms (Vercel, Netlify, Cloudflare Pages). Generous free tiers, US-headquartered, usage-metered above the free limits.
- The PaaS (Render, Railway, Fly.io). Multi-service hosting where static sites are one feature among many. Good if you also need backends.
- The focused EU options (VibeDeploy and a handful of others). Flat per-plan pricing, EU data residency, smaller scope.
Pick by these factors, in order:
- Data residency. If your visitors are EU-based and you handle any personal data (analytics, contact forms, accounts), EU residency makes GDPR compliance materially easier. More on this here.
- Pricing predictability. Usage-metered hosts can surprise you when one of your sites trends. Flat per-plan pricing means you upgrade tiers, not get surprise invoices.
- Free-tier generosity. Cloudflare Pages and Netlify have the largest permanent free tiers. VibeDeploy has no permanent free tier, but its 14-day trial includes a custom domain.
- Backend needs. Static or SPA only? Most hosts work. Need a backend? You'll want the PaaS options or a separate API.
For this guide, the deploy steps assume VibeDeploy. The pattern translates to any host with minor changes.
Step 3: Upload
Three patterns work, in order of effort:
Drag-and-drop
Sign up, click New Site, drag your dist/ folder into the upload area. Done. This is the right choice for one-shot artifacts and prototypes you don't expect to update often.
Deploy from your AI agent (MCP)
VibeDeploy ships a Model Context Protocol server, so AI tools that speak MCP (Claude, Cursor) can deploy for you. Connect it once by adding the server URL:
https://mcp.vibedeploy.be/mcp
Then tell the agent "deploy this site." It builds, uploads, and replies with the live URL. ~10 to 30 seconds end-to-end on a typical SPA.
Git connect
Best for projects you'll iterate on. Connect your GitHub repo, push to main, the host redeploys. Pull-request preview builds work the same way.
Step 4: Custom domain
A vibedeploy.be subdomain is fine for prototypes. For anything client-facing or a real product, you want your own domain.
The mechanics are the same on every host:
- Add the domain in your host's site settings.
- Add a CNAME (or A record for apex) in your DNS pointing to the host's edge.
- Wait 30 to 90 seconds for SSL provisioning.
If you bought the domain through your hosting provider, this is one click. Otherwise it's a copy-paste dance with your registrar's DNS panel.
Step 5: Let the AI deploy for you
This is the pattern that didn't exist before AI tools and matters most in 2026: instead of deploying by hand, you let the AI that built the site put it online.
Two ways to do it on VibeDeploy:
- MCP. Connect the VibeDeploy MCP server (
https://mcp.vibedeploy.be/mcp) in Claude or Cursor. The deploy tools become available to the agent, so you say "deploy this" and it ships, with no credentials to paste. - Deploy guide. For ChatGPT, Gemini, or any other chat tool, export your deploy guide from the VibeDeploy dashboard. It is a short file with your deploy key and instructions. Paste it into the conversation and the AI POSTs your files to the API and returns the live URL. If the sandbox blocks network calls, the guide falls back to a one-click Deploy panel.
Either way you go from "the AI built it" to "it's live on my domain" without hand-deploying.
Common mistakes
These are the patterns we see kill production deploys.
Treating the preview as the deploy. Lovable, Bolt.new, and Claude artifacts all run in sandboxes. The sandbox uses dev-mode runtime tricks (hot reload, in-browser babel, mock APIs) that don't survive the build. Always run the build locally and test the output before deploying.
Hardcoding API URLs. AI tools love to hardcode http://localhost:3000 or a Vite dev URL into fetch calls. Search for localhost, 127.0.0.1, and :// patterns before deploying.
No environment variable strategy. If your app needs an API key (OpenAI, Supabase, etc.), don't put it in the AI-generated code committed to the repo. Use environment variables. Most hosts let you set them per-site.
Skipping the build. Some teams upload the source folder thinking the host will build for them. Some hosts do; many don't. Check whether your host expects pre-built output or source.
No custom domain on the free tier. Many big hosts gate custom domains behind paid plans. Verify before you start.
What's next
Once your site is live, the next things to think about:
- Analytics. Plausible (EU-hosted, GDPR-friendly) or Fathom are common picks for AI-built sites. Both work without cookie consent banners.
- Forms and email. If your site has a contact form, you need a form-handler. VibeDeploy has a built-in forms relay that emails you submissions; on other hosts, use Formspree, Netlify Forms, or a small serverless function.
- Monitoring. Pingdom, Better Stack, or your host's built-in uptime monitoring.
- Backups. If your host doesn't keep historical deploys, you should. A bad AI regeneration can ship to production in 10 seconds.
Tool-specific guides
For deeper walkthroughs of each tool's quirks:
- Deploy a Lovable site to a custom domain
- Bolt.new export to production URL
- GDPR matters when hosting AI-built sites in Europe
The base deploy pattern is the same across tools. The differences are in how you get the build output and how the magic file integrates with each tool's AI agent.
TL;DR
Get the build output. Pick a host that fits your residency and pricing needs. Upload. Add a domain. Drop a magic file for the AI agents. Done.
Ship your AI-built site in minutes
VibeDeploy hosts your AI-built websites in the EU with custom domains, automatic SSL, and a 14-day free trial that gets you online today.
Related reading
What is MCP hosting? Deploying a site via MCP
MCP hosting lets an AI agent deploy your site to a live URL, no manual upload. How deploy-via-MCP works and how to connect it in Claude, Cursor or Windsurf.
Localhost to Live URL: Turn Your Project into a Public Link
Turn a localhost project into a shareable live HTTPS URL. Compare a temporary tunnel with permanent EU hosting, then connect your own domain and HTTPS.
Lovable Custom Domain: Deploy Your Site in 5 Minutes
Move a Lovable project off its lovable.app subdomain and onto your own domain, step by step, with EU hosting and automatic SSL. Five minutes end-to-end.
Bolt.new Project Download: Export Your Project as a ZIP
Download your Bolt.new project as a ZIP, build it locally, and deploy it to a production URL with EU hosting, a custom domain, and automatic SSL included.
GDPR AI Hosting: What AI-Built Sites Need in the EU
What GDPR AI hosting really requires: why EU-resident infrastructure matters for AI-built sites, and how to set up a compliant deploy without sales calls.