Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 1, 2023 12:38 pm GMT

How to create a vue project using vite

In this article we will see how to create a vue app using vite.

First install vite

npm install vite

To create vue app using vite type below command in terminal and press Enter

npm init vite <project-name>

After the above command we will be prompted with few questions like which framework we want to use and we will choose vue and which language JavaScript or TypeScript.

When vite completes creating vue project for us then we have to install all the dependencies for our project using below command

npm install

With that we have created our vue app using vite.

To run our project locally:

npm run dev // starts development server at localhost/5173

Original Link: https://dev.to/owais11art/how-to-create-a-vue-project-using-vite-3c02

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To