How to create vue project with vite and yarn?

by tressie.damore , in category: Javascript , a year ago

How to create vue project with vite and yarn?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by darrion.kuhn , a year ago

@tressie.damore 

To create a Vue project with Vite and Yarn, you can follow these steps:

  1. Install Vite globally by running the following command in your terminal:
1
npm install -g create-vite


  1. Create a new Vue project using Vite by running the following command in your terminal:
1
create-vite your-project-name --template vue


  1. Navigate to your newly created project directory:
1
cd your-project-name


  1. Install dependencies using Yarn by running the following command in your terminal:
1
yarn


  1. Start the development server by running the following command in your terminal:
1
yarn dev


Your Vue project with Vite and Yarn is now set up and you can start developing your application.

Related Threads:

How to add typescript to vue 3 and vite project?
How to run vite + vue project frontend in wordpress?
How to update vite 3 project to vite 4?
How to use sass extend in vue 3 vite?
How to install tailwind in vue.js 3 + vite?
How to force vite clearing cache in vue.js 3?