Digital Office Automation System
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.

README.md 411B

1 day ago
12345678910111213141516171819202122232425
  1. ## 开发
  2. ```bash
  3. # 安装依赖
  4. npm install
  5. # 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
  6. npm install --registry=https://registry.npmmirror.com
  7. # 启动服务
  8. npm run dev
  9. ```
  10. 浏览器访问 http://localhost:80
  11. ## 发布
  12. ```bash
  13. # 构建测试环境
  14. npm run build:stage
  15. # 构建生产环境
  16. npm run build:prod
  17. ```