-
To clone the repo into a directory named
vite-project
, open a terminal window and run the following commandgit clone https://github.com/bobbywells52/vite-project.git vite-project cd vite-project
-
Install the prerequisite node packages by running
npm install
. You should see anode_modules
directory get generated with the relevant node dependencies needed for the app to build for development. -
Run
npm run dev
to launch the app locally. By default, vite should run the app onhttp://localhost:5173/
. If it is not running on that port, check your terminal output to see the port that it is running on.