You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
## 前端运行
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
|
|
# 安装依赖
|
|
|
|
npm install
|
|
|
|
|
|
|
|
# 启动服务
|
|
|
|
npm run dev
|
|
|
|
# 打包桌面项目
|
|
|
|
npm run electron:build
|
|
|
|
|
|
|
|
# 构建测试环境 npm run build:stage
|
|
|
|
# 构建生产环境 npm run build:prod
|
|
|
|
# 前端访问地址 http://localhost:80
|
|
|
|
```
|
|
|
|
|