Deploy UmiJS with Vercel
Create an UmiJS app and deploy it live with Vercel.
UmiJS is a pluggable enterprise-level React application framework.
Step 1: Set Up Your Umi Project
Set up an Umi app with npm
and move into the project directory, choosing the options App, TypeScript, and no additional functionality where prompted:
npm init umi my-umi-project && cd my-umi-project
Initializing an Umi app with npm and moving into the project directory.
Step 2: Deploying Your Umi App with Vercel
To deploy your UmiJS app with a Vercel for Git, make sure it has been pushed to a Git repository.
Import the project into Vercel using your Git of choice:
After your project has been imported, all subsequent pushes to branches will generate Preview Deployments, and all changes made to the Production Branch (commonly "main") will result in a Production Deployment.
Once deployed, you will get a URL to see your app live, such as the following: https://umijs.now-examples.now.sh
Set up a UmiJS app with a few clicks using the Deploy button, and create a Git repository for it in the process for automatic deployments for your updates.