Logo

How to Create a Vite App

📌 **Prerequisites**: Node.js >= 18 and npm.

1️⃣ Scaffold a new Vite app:

1npm create vite@latest my-vite-app

2️⃣ Select framework (e.g., React + TypeScript).

3️⃣ Install dependencies and start dev server:

1cd my-vite-app
2npm install
3npm run dev

🚀 Your Vite app is now up and running!