Files
medusa-store/docs/content/deployments/storefront/deploying-next-on-vercel.md

6.3 KiB
Raw Blame History

description, addHowToData
description addHowToData
Learn step-by-step. true

Deploy Next.js Storefront on Vercel

In this document, youll learn how to deploy the Next.js Storefront on Vercel.

Alternatively, you can directly deploy the Next.js storefront to Vercel with this button.

Deploy with Vercel

Prerequisites

Medusa Components

It is assumed you already have installed the Next.js storefront locally. If not, please follow along with this guide instead.

Its also assumed you already have the Medusa backend deployed, which the Next.js storefront interacts with. If not, you can check out one of the deployment documentation related to the Medusa backend.

Required Accounts

:::note

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

:::

Required Tools

  • Git CLI: Only required if youre deploying through the Vercel website.

Step 1: Create GitHub Repository

:::note

This step is only required if youre deploying from the Vercel website. However, its highly recommended to connect your Vercel project to a Git repository for a better developer experience.

:::

Before you can deploy your Next.js storefront, 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. Youll 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, youll be redirected to the repositorys 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 Next.js storefront 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 origin master

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


Step 2: Deploy to Vercel

This section covers how to deploy the storefront, either using the Vercel website or using Vercels CLI tool.

Option 1: Using the Vercel Website

This section explains how to deploy the storefront 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 Next.js storefront and click on the Import button. If you havent connected your Vercel account to any Git provider, you must do that first.
  5. In the Configure Project form:
    1. Open the Environment Variables collapsible, and add an environment variable with the name NEXT_PUBLIC_MEDUSA_BACKEND_URL and the value being the URL to your deployed Medusa Backend.
    2. You can optionally edit the Project Name.
  6. Once youre done, click on the “Deploy” button.

This will start the deployment of the storefront. Once its done, youll be redirected to the main dashboard of your new project.

:::note

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

:::

Option 2: Using Vercels CLI Tool

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

In the directory holding your storefront, run the following command to deploy your storefront:

vercel --build-env NEXT_PUBLIC_MEDUSA_BACKEND_URL=<YOUR_BACKEND_URL>

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

Youll then be asked to log in if you havent already, and to choose the scope to deploy your project to. You can also decide to link the storefront to an existing project, or change the projects 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 N to keep the default settings.

It will take a couple of minutes for the deployment to finish. The link to the storefront will be shown in the final output of the command.

:::note

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

:::


Step 3: Configure CORS on the Medusa Backend

To send requests to the Medusa backend from the Next.js storefront, you must set the STORE_CORS environment variable on your backend to the Next.js storefronts URL.

:::tip

If you want to set a custom domain to your Next.js storefront website on Vercel, make sure to do it before this step. You can refer to this guide on Vercels documentation.

:::

On your Medusa backend, add the following environment variable:

STORE_CORS=<STOREFRONT_URL>

Where <STOREFRONT_URL> is the URL of your Next.js storefront that you just deployed.

Then, restart your Medusa backend. Once the backend is running again, you can use your Next.js storefront.