6 min readBy The VibeDeploy team

Claude Artifact Custom Domain: Download, Host, and Launch

Download or copy your Claude artifact code, host it outside Claude, and connect a custom domain with EU hosting and automatic Let's Encrypt SSL included.

You asked Claude for a landing page, a calculator, or an interactive chart, and it produced an artifact: a working page rendered right next to the conversation. It looks finished. It is not online. This guide walks through the whole path from that artifact to a real website on a domain you own, including the parts Claude's own Publish button cannot do.

What a Claude artifact actually is

An artifact is Claude's container for substantial, self-contained output. For websites, that means one of three formats:

  • A single HTML file. Markup, CSS, and JavaScript in one document. This is the most common web artifact and the easiest to host anywhere.
  • A single-file React component. Claude renders these in the chat using an in-browser Babel plus React UMD setup, so there is no build step. The component lives in one file and compiles in the visitor's browser.
  • SVG and other visual documents. Diagrams and graphics that can be embedded in a page.

The important property is "single file". Because the whole site is one document, deploying it is trivial: any static host can serve it as-is. No bundler, no CI pipeline, no node_modules.

Where the format hits its limits

Before you deploy, know what you are working with:

  • In-chat rendering helpers do not travel. An artifact that relies on Claude's chat-side renderer, the Mermaid diagram renderer for example, needs the equivalent library loaded in the file itself. For Mermaid, add Mermaid.js via a CDN script tag and the diagrams render standalone.
  • Real build steps are a different animal. If Claude gave you TSX with imports across multiple files, that is a project, not a single-file artifact. Run npm run build locally and deploy the dist folder instead.
  • Claude's Publish keeps ownership at Anthropic. The built-in Publish option puts your artifact on a claude.ai URL with a fixed Created-with-Claude header. There is no custom domain, no control over the OG image, favicon, or meta tags, no analytics, and Anthropic can unpublish the page. Fine for sharing a prototype, wrong for anything you want to look like yours.

That last point is the reason this guide exists. The fix is to move the file to hosting you control.

How to download or copy a Claude artifact

Open the artifact's code view in Claude and copy the complete source into a local file. Save a plain HTML artifact as index.html. If Claude produced a React component or a multi-file project, copy every file into a local project folder and keep the paths and filenames Claude supplied.

If the client you use offers a file download for the artifact, download it and inspect the result before deploying. The same rule applies: a standalone HTML file can go directly to a static host, while a project with package.json must be built first. The Claude artifacts deployment guide covers both formats.

One trap worth naming: if Claude told you it saved the site to a path like /home/workdir/artifacts/index.html, do not go looking for that file on your computer. That path lives inside Claude's own sandbox and disappears with the session; here is what that path means and how to get the file out.

Step 1: paste the deploy guide into the conversation

The fastest route that works in any Claude client is the deploy guide, a single instruction file that teaches the AI how to publish to VibeDeploy.

  1. Start a 14-day free trial. No credit card is needed.
  2. In the dashboard, export your deploy guide. It contains your deploy credentials and the exact API instructions.
  3. Paste the guide into the same conversation where the artifact lives and say "deploy this".

Claude reads the instructions, sends the artifact's files to the VibeDeploy API as a JSON payload, and replies with a live URL of the form https://yourname.vibedeploy.be. Open it in a normal browser tab: same page, but now it exists outside the chat, served over HTTPS from Belgian infrastructure.

If you use Claude Desktop or Claude Code, there is an even shorter route: connect the VibeDeploy MCP server at https://mcp.vibedeploy.be/mcp once, and from then on "deploy this" needs no pasted guide at all. Claude calls the deploy tool directly. Both flows are covered in more depth on the Claude artifacts page.

Step 2: check the deployed page

Almost every single-file artifact works identically once hosted. Run through this quick list anyway:

  • Console errors. Open the browser dev tools. A missing CDN script shows up here first.
  • External resources. If the artifact loads fonts, images, or libraries over http://, switch them to https:// to avoid mixed-content warnings.
  • The title tag. Claude often leaves a generic title. Ask Claude to set a proper <title> and meta description, then redeploy. On your own hosting you control all of this, which is exactly what claude.ai publishing denies you.

Redeploying is the same sentence again: "update the site with these changes". Every deploy is recorded, so a bad revision can be rolled back.

Step 3: put it on your own domain

A *.vibedeploy.be subdomain is fine for testing. For anything public-facing, attach your own domain:

  1. Open the site's settings in the dashboard and choose Domains, then Add domain.
  2. Enter the domain and add the DNS records shown: an A record for the apex (example.com) pointing at VibeDeploy's edge IP, and a CNAME for www pointing at proxy.vibedeploy.be.
  3. Wait for DNS to propagate. Most registrars take a few minutes.

Once the records resolve, VibeDeploy issues a Let's Encrypt certificate automatically, usually within 60 seconds, and the artifact is live on https://example.com. No Created-with-Claude header, your favicon, your meta tags, and analytics if you want them: the dashboard tracks traffic per site, and because you own the HTML you can drop in any analytics snippet.

The iteration loop

The real payoff shows up on the second deploy. Your workflow becomes: describe a change to Claude, Claude edits the artifact, Claude redeploys it, the custom domain serves the new version. The chat that built the site also maintains it. Compare that with the old loop of copying code into an editor, committing, and waiting for a pipeline.

What it costs

The 14-day trial covers a full site with a custom domain, so the entire flow above costs nothing to try. After the trial, plans start at 15 euro per month including Belgian VAT, flat, with custom domains and SSL included on every plan. Details on the pricing page.

Summary

A Claude artifact is a single self-contained file, which makes it the easiest class of website to host. Claude's own Publish parks it on claude.ai with Anthropic's branding and no domain of your own. Moving it takes one pasted deploy guide (or one MCP connection), one sentence, and two DNS records. Fifteen minutes from chat window to https://yourdomain.com, most of which is DNS propagation.

Full tool page with FAQ and comparison table: Deploy Claude artifacts.

From the VibeDeploy team

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

7 min readPillar

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.

hostingdeploymentai
5 min read

Ngrok vs Cloudflare Tunnel: Which One Should You Use?

Ngrok and Cloudflare Tunnel both put your localhost on a public URL, but they make opposite trade-offs. When each wins, where Vercel fits, and when neither is the right tool.

ngrokcloudflare-tunnellocalhost
4 min read

Vibe Deploying: What It Means and How It Works

Vibe deploying is shipping a website by talking to an AI instead of running a build pipeline. What the term covers, how MCP makes it work, and how to try it free.

vibe-codingdeploymentmcp
5 min read

Launch a landing page with a working signup form

Validate an idea this week: let an AI build your landing page, host it on your own domain and collect signups through a form relay, no backend or mail service needed.

landing-pageformsvalidation
6 min read

/home/workdir/artifacts/index.html: How to Get Your File Out

Claude saved your site to /home/workdir/artifacts/index.html. That path lives in Claude's sandbox, not on your computer. Get the file out and put it on a live URL.

claudeartifactssandbox
6 min read

From Claude Code in your terminal to a live site

Claude Code writes a finished site straight into your project folder. Here is how to get it live: the MCP one-liner, the magic-file fallback, and the redeploy loop.

claudeclaude-codemcp
6 min read

AI-website online zetten: de zes valkuilen

Je AI-website online zetten lijkt de makkelijke laatste stap, maar juist hier gaat het vaak mis. Zes valkuilen die een AI-site tegenhouden, en hoe je ze vermijdt.

ai-websiteonline-zettenhosting
5 min read

The Lovable-to-production checklist

The pre-launch checklist for Lovable sites: export path, build output, forms, analytics, DNS, SSL, staging and rollback. Eight checks, one boring launch.

lovableproductionchecklist
4 min read

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.

mcphostingdeployment
5 min read

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.

localhostdeploymenthosting
4 min read

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.

lovablecustom-domaindeployment
5 min read

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.

boltdeploymenthosting
6 min read

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.

gdprhostingeu