Build and deploy static sites using React templates quickly.
The following are examples of how to set up a React static site and a React with Vite static site to deploy on Sevalla’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.
You can also use this quick start template on Sevalla’s Application Hosting without any additional configuration. If you use Application Hosting, the Start command can be left blank for the web process as Sevalla automatically detects the required command during the first deployment.
npm run build
Sevalla automatically installs dependencies defined in your package.json file during the deployment process. The site is available as soon as the deployment finishes, and the Sevalla Welcome page loads at your site’s URL.
Sevalla Welcome page after successful deployment of React.
Whenever a deployment is initiated (through creating a static site or redeploying due to an incoming commit), the npm start
and npm build
commands are run.
This is an example of how to set up a React static site with Vite to deploy on Sevalla’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.
Sevalla automatically installs dependencies defined in your package.json file during the deployment process.
npm run build
Sevalla Welcome page after successful deployment of React with Vite.
Whenever a deployment is initiated (through creating a static site or redeploying due to an incoming commit), the npm install
and npm build
commands are run.