---
title: Deploy a Google Stitch design with Vercel Drop
description: Download the HTML from your Google Stitch screens and deploy them to production with Vercel Drop, with no Git or CLI required.
url: /kb/guide/google-stitch-vercel-drop
canonical_url: "https://vercel.com/kb/guide/google-stitch-vercel-drop"
published: 2026-06-11
last_updated: 2026-06-11
authors: Ben Sabic
related:
  - /docs/git
  - /docs/drop
  - /docs/deployments/managing-deployments
install_vercel_plugin: npx plugins add vercel/vercel-plugin
---
<!-- docsgraph:related -->
## Related pages

> **For AI agents:** Follow these links to understand how this page connects to the rest of the Vercel ecosystem. For the full cross-link map (inbound, outbound, prerequisites, and semantic neighbors), see the .graph.md link below.

- [Deployments](https://vercel.com/docs/deployments?from=related) — Learn how to create and manage deployments on Vercel.
- [Deploy from CLI](https://vercel.com/docs/projects/deploy-from-cli?from=related) — Set up and deploy a Vercel project using the CLI, from linking to production.
- [How to Deploy a Stencil app with Vercel](https://vercel.com/kb/guide/deploying-stencil-with-vercel?from=related) — Create a Stencil app and deploy it live with Vercel.
- [Export your Webflow site and host it on Vercel](https://vercel.com/kb/guide/webflow-vercel-drop?from=related) — Learn how to export your Webflow site's code and host it on Vercel with Vercel Drop. Drag your .zip export into the brow
- [Deploy a Claude Design project to Vercel](https://vercel.com/kb/guide/claude-design?from=related) — Publish a Claude Design project to Vercel for a live production URL with the Vercel connector, or by exporting a .zip to
- [Vercel Drop vs Netlify Drop](https://vercel.com/kb/guide/vercel-drop-vs-netlify-drop?from=related) — Compare Vercel Drop and Netlify Drop for drag-and-drop deployment: framework builds, static sites, updates, size limits,
- [How to Deploy a Vue.js Site with Vercel](https://vercel.com/kb/guide/deploying-vuejs-to-vercel?from=related) — Create your Vue.js app and deploy it with Vercel.

Full cross-link map for this page: [/kb/guide/google-stitch-vercel-drop.graph.md](/kb/guide/google-stitch-vercel-drop.graph.md)
<!-- /docsgraph:related -->


[Google Stitch](https://stitch.withgoogle.com/) by Google Labs turns text prompts, sketches, and screenshots into UI designs, with HTML and Tailwind CSS behind every screen. When a design is ready, you can download its code straight from the canvas. [Vercel Drop](https://vercel.com/drop) deploys those files directly to your browser, with no Git, Vercel CLI, or local setup required. Together, they take you from a prompt to a live production URL you can share with anyone.

In this guide, you'll export the HTML for your Stitch screens, deploy them to Vercel with Vercel Drop, choose which page loads at your site's root, and set up automatic deployments as you iterate.

## Prerequisites

- A [Google Stitch](https://stitch.withgoogle.com/) project. Stitch is free and requires only a Google account.
  
- A [Vercel account](https://vercel.com/signup). The free Hobby plan works.
  

## Steps

### 1\. Export your code from Google Stitch

Select a screen on your Stitch canvas and click the code icon (the angle brackets, `< >`). From the code view, download the generated HTML. Repeat for each screen you want to include on your site.

### 2\. Put the files in one folder

Create a folder on your computer and move the downloaded HTML files into it. If you want a specific screen to load when someone opens your site, rename that file to `index.html`. If you skip this, Vercel asks you to pick a homepage during deployment instead.

### 3\. Drop the folder into Vercel

Go to [vercel.com/drop](https://vercel.com/drop) and drag the folder onto the page. You can also zip the folder first or select a **folder** to upload, because Vercel Drop accepts files, folders, and `.zip` archives.

### 4\. Name your project and deploy

Choose the Vercel team to deploy to, enter a project name, and select **Deploy**. Stitch exports are static HTML, so Vercel publishes them as-is with no build step. When the deployment finishes, you get a live URL for your site.

### 5\. Choose your homepage (if prompted)

If your folder has no `index.html` at the top, Vercel asks which page people should see first when they open your site. Pick a screen from the **Root (/)** menu. Vercel serves every other file at its own path, so a screen exported as `pricing.html` is available at `/pricing.html`.

## Updating your site after changes

Each drop creates a new Vercel project, so re-exporting from Stitch and dropping again gives you a new project with a new URL. For prototypes and design reviews, that's often fine, and each version stands on its own. If a design graduates into a real project, move the code into a repository, push it to GitHub, GitLab, or Bitbucket, and [connect the repository to Vercel](https://vercel.com/docs/git). After that, every push deploys automatically, and your URL stays the same.

## Resources and next steps

- Read the [Vercel Drop documentation](https://vercel.com/docs/drop) for limitations and details.
  
- [Deploy from Git](https://vercel.com/docs/git) for automatic deployments on every push.
  
- [Managing deployments](https://vercel.com/docs/deployments/managing-deployments) to redeploy, inspect, and promote.