2.vite 的安装和使用
安装 vite
使用 NPM:
- bash
npm install vite –g # 全局安装 npm install vite –D # 局部安装
使用 yarn:
- bash
yarn add vite –g # 全局安装 yarn add vite –D # 局部安装
通过 vite 启动项目
bashnpx vite
使用 vite 创建项目
使用 NPM:
- bash
$ npm create vite@latest
使用 Yarn:
- bash
$ yarn create vite
使用 PNPM:
- bash
$ pnpm create vite