React
The following are examples of how to set up a React static site and a React with Vite static site to deploy on Kinsta’s Static Site Hosting services from a GitHub repository.
React is a popular JavaScript library for building user interfaces. It allows developers to create reusable UI components and efficiently update the UI in response to data changes. More information is available on the React website.
Kinsta automatically installs dependencies defined in your package.json file during the deployment process.
- Log in to GitHub and create a new repository from this template (Use this template > Create a new repository): Kinsta – Hello World – React.
- In MyKinsta, add a static site with the Hello World – React repository and the following Build settings:
- Build command:
npm run build
- Node version: 18.16.0
- Publish directory: build
- Build command:
- The site is available as soon as the build finishes, and the Kinsta Welcome page loads at your site’s URL.

Deployment Lifecycle
Whenever a deployment is initiated (through creating an application or redeploying due to an incoming commit), the npm start
and npm build
commands are run.
React With Vite
This is an example of how to set up a React static site with Vite to deploy on Kinsta’s Static Site Hosting services from a GitHub repository.
Vite is a tool that helps you build decentralized applications; it provides developer tools and APIs to simplify the development process and supports multiple programming languages. More information can be found on the Vite website.
Kinsta automatically installs dependencies defined in your package.json file during the deployment process.
- Log in to GitHub and create a new repository from this template (Use this template > Create a new repository): Kinsta – Hello World – Vite + React.
- In MyKinsta, add a static site with the Hello World – Vite + React repository and the following Build settings:
- Build command:
npm run build
- Node version: 18.16.0
- Publish directory: dist
- Build command:
- The site is available as soon as the build finishes, and the Kinsta Welcome page loads at your site’s URL.

Deployment Lifecycle
Whenever a deployment is initiated (through creating an application or redeploying due to an incoming commit), the npm install
and npm build
commands are run.