前端构建工具 vite 相关命令

vite(推荐使用 vite: 快速冷启动(秒开), 即时的模块热更新, 按需编译)

全局安装vite

npm i -g create-vite-app

使用 vite1.0 搭建项目

create-vite-app 项目名

使用 vite 最新版本

npm init vite@latest 项目名

指定使用模板

npm init vite@latest 项目名 --template vue

安装依赖

npm i

运行项目

npm run dev

卸载vite

npm uninstall -g create-vite-app

你可能感兴趣的:(前端)