|
|
||
|---|---|---|
| .. | ||
| src | ||
| static | ||
| .env | ||
| .env.development | ||
| .env.development.local | ||
| .gitattributes | ||
| .gitignore | ||
| .prettierrc | ||
| README.md | ||
| dist.zip | ||
| index.html | ||
| jsconfig.json | ||
| package.json | ||
| vite.config.js | ||
| vite.dev.config.js | ||
README.md
开发
# 进入项目目录
cd xxx-ui
# 安装依赖
cnpm i
# 安装速度慢的情况,可以通过如下操作解决 npm install --registry=https://registry.npmmirror.com
# 启动服务
npm run dev
浏览器访问 http://localhost:8887
发布
# 构建开发环境
npm run builddev
# 构建生产环境
npm run build