How to create your first Vite project by following these three easy steps to create your Vite application quickly
1. Create your project based on the scaffolding project
git clone <https://github.com/fancylife/vite-starter.git> ${yourProjectName}
cd ${yourProjectName}
Copy the code
2. Install dependencies
npm install
Copy the code
3. Start the development instruction
npm run dev
npm run build
Copy the code