Digital Office Automation System
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

README.md 411B

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. ```