---
title: "Deploy To Vercel"
description: "How to deploy web sites and web apps built with LaunchFast starter kits to Vercel?"
source: "https://www.launchfa.st/documentation/deployment/vercel"
---

> **Site index for agents**
> Fetch https://www.launchfa.st/llms.txt to discover every page on this site.
> Every page is also available as Markdown by appending `.md` to its URL.

import { Steps } from '@astrojs/starlight/components'

<Steps>

1. Deploy to [Vercel](https://vercel.com) with the following:
    
    ```bash
    vercel deploy --prod
    ```
    
    If you do not have an existing Vercel project, this command will help you set up one.

2. Next, set all the environment variables in your Vercel's project `Settings` > `Environment Variables` from your local `.env` file.

3. Finally, deploy to Vercel (again) with the following:
    
    ```bash
    vercel deploy --prod
    ```

4. Now that's set up, you can deploy in future iterations only by executing the command once.

</Steps>
