Home

Published

- 1 min read

vite react project

img of vite react project

The solution for this is noted below

vite react project

Solution

   # Create a React Project with Vite:
npm create vite@latest my-react-app -- --template react
cd my-react-app
npm install
npm run dev

# Create a React + TypeScript Project with Vite:
npm create vite@latest my-react-app-ts -- --template react-ts
cd my-react-app-ts
npm install
npm run dev

Try other methods by searching on the site. That is if this doesn’t work