Skip to main content

Vite

Vite is a JavaScript framework that aims to provide a faster and leaner development experience. It is already installed and setup for the project, and you can use it to start a development server for the client with:

# Install dependencies. Only needed once
yarn

# Start the client
yarn dev

The client will be available at ${import.meta.env.VITE_URL} and every time that you make a change to the code, the page will be automatically refreshed.