Install nvm with these commands :
sudo apt install curl
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
source ~/.bashrc
Then install Node 16 using this commande
nvm install 16
Finally install yarn using this command :
npm install -g yarn
To install the dependencies of the project use this command:
yarn install
Launch the live server using this command :
yarn dev
Builmd the app using this command, the result will be in the dist
folder :
yarn build