Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 634 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 634 Bytes

Vite

Last but not least we are going to talk about Vite. Vite is a web development build tool that allows for lightning-fast serving of code due its native ES Module import approach. If you're interested in learning more about Vite you can check out this video I did on it that covered my first impressions.

Vue projects can quickly be set up with Vite by running the following commands in your terminal.

npm init vite-app <project-name>
cd <project-name>
npm install
npm run dev

Note: I asked Evan if Vite would ever replace Vue CLI...