-
Create a Vite site.
Use degit to create a new site, specifying the minimal Vite starter.
# create a new Vite site using the minimal TypeScript starter npx degit https://github.com/GoodPraxis/ts-vite-starter my-vite-site
-
Install dependencies
Navigate into your new site’s directory and install dependencies.
cd my-vite-site/ npm install
-
Initialise git and create initial commit
git init git add . git commit -m "Initial commit"
-
Start developing.
Start a development server inside your new site’s directory.
npm run develop
-
Open the code and start customizing!
Your site is now running at http://localhost:3000!
-
Clone repository
Clone the git repository like any other project
-
Install dependencies
Run NPM install to setup the project
npm install
-
Start developing.
Run Vite
npm run develop
or, if you have the Vite CLI installed:
vite dev
-
Open the code and start customizing!
Your site is now running at http://localhost:3000!