Skip to main content
Skip to main content

Deploy Admin to Vercel

In this document, you’ll learn how to deploy the admin dashboard to Vercel.

Prerequisites

Medusa Components

You must have a Medusa backend installed along with an admin dashboard plugin.

Required Accounts

Note

If you want to use another Git Provider, it’s possible to follow along with this guide, but you’ll have to perform the equivalent steps in your Git Provider.

Required Tools

  • Git CLI: Only required if you’re deploying through the Vercel website.

Step 1: Create GitHub Repository

Note

This step is only required if you’re deploying from the Vercel website. However, it’s highly recommended to connect your Vercel project to a Git repository for a better developer experience.

Before you can deploy your admin dashboard, you need to create a GitHub repository and push the code base to it. To do that:

  1. On GitHub, click the plus icon at the top right, then click New Repository.
  2. You’ll then be redirected to a new page with a form. In the form, enter the Repository Name.
  3. Scroll down and click Create repository.

Push Code to GitHub Repository

The next step is to push the code to the GitHub repository you just created.

After creating the repository, you’ll be redirected to the repository’s page. On that page, you should see a URL that you can copy to connect your repository to a local directory.

Copy the link. Then, open your terminal in the directory that holds your Medusa backend codebase and run the following commands:

git init
git remote add origin <GITHUB_URL>

Where <GITHUB_URL> is the URL you just copied.

Then, add, commit, and push the changes into the repository:

git add .
git commit -m "initial commit"
git push

After pushing the changes, you can find the files in your GitHub repository.


Step 2: Configure Build Script

In the package.json of the Medusa backend, add or change a build script for the admin:

"scripts": {
// other scripts
"build:admin": "medusa-admin build --deployment",
}

Note that when using the --deployment option, the backend's URL is loaded from the MEDUSA_ADMIN_BACKEND_URL environment variable. You'll configure this environment variable in a later step.


Step 3: Add Vercel Configurations

In the root directory of the Medusa backend, create a new file vercel.json with the following content:

{
"rewrites": [{ "source": "/(.*)", "destination": "/index.html" }]
}

Step 4: Push Changes to GitHub

After making all the previous changes, push them to GitHub before starting the deployment on Vercel:

git add .
git commit -m "prepare repository for deployment"
git push

Step 5: Deploy to Vercel

This section covers how to deploy the admin, either using the Vercel website or using Vercel’s CLI tool.

Option 1: Using the Vercel Website

This section explains how to deploy the admin using the Vercel website:

  1. Open the Vercel dashboard after logging in.
  2. Click on the “Add New…” button next to the search bar.
  3. Choose Project from the dropdown.
  4. In the new page that opens, find the Git repository that holds your Medusa backend and click on the Import button. If you haven’t connected your Vercel account to any Git provider, you must do that first.
  5. In the Configure Project form:
    1. Set the Framework Preset to Other.
    2. Open the Build and Output Settings collapsible, and set the Build Command to yarn build:admin and the Output Directory to build.
    3. Open the Environment Variables collapsible, and add an environment variable with the name MEDUSA_ADMIN_BACKEND_URL with the value being the URL to your deployed Medusa backend.
    4. You can optionally edit the Project Name.
  6. Once you’re done, click on the “Deploy” button.

This will start the deployment of the admin. Once it’s done, you’ll be redirected to the main dashboard of your new project.

Note

At this point, when you visit the admin, you will face errors related to Cross-Origin Resource Sharing (CORS) while using the admin. Before you start using the admin, follow along the Configure CORS on the Medusa Backend section.

Option 2: Using Vercel’s CLI Tool

This section explains how to deploy the admin using the Vercel CLI tool. You should have the CLI tool installed first, as explained in Vercel’s documentation.

In the directory of your Medusa backend, run the following command to deploy your admin:

vercel --build-env MEDUSA_ADMIN_BACKEND_URL=<YOUR_BACKEND_URL>

Where <YOUR_BACKEND_URL> is the URL of your deployed Medusa backend.

You’ll then be asked to log in if you haven’t already, and to choose the scope to deploy your project to. You can also decide to link the admin to an existing project, or change the project’s name.

When asked, ”In which directory is your code located?”, keep the default ./ and just press Enter.

The project setup will then start. When asked if you want to modify the settings, answer y. You’ll then be asked a series of questions:

  1. “Which settings would you like to overwrite”: select Build Command and Output Directory using the space bar, then press Enter.
  2. “What's your Build Command?”: enter yarn build:admin.
  3. “What's your Output Directory?”: enter build.

After that, it will take a couple of minutes for the deployment to finish. The link to the admin will be shown in the final output of the command.

Note

At this point, when you visit the admin, you will face errors related to Cross-Origin Resource Sharing (CORS) while using the admin. Before you start using the admin, follow along the Configure CORS on the Medusa Backend section.


Step 6: Configure CORS on the Medusa Backend

To send requests to the Medusa backend from the admin dashboard, you must set the ADMIN_CORS environment variable on your backend to the admin’s URL.

Note

If you want to set a custom domain to your admin dashboard on Vercel, make sure to do it before this step. You can refer to this guide on Vercel’s documentation.

On your Medusa backend, add the following environment variable:

ADMIN_CORS=<ADMIN_URL>

Where <ADMIN_URL> is the URL of your admin dashboard that you just deployed.

Then, restart your Medusa backend. Once the backend is running again, you can use your admin dashboard.


Troubleshooting

CORS Error
Was this section helpful?