## 开发 ```bash # 进入项目目录 cd admin-ui # 安装依赖 npm install # 使用taobao的服务器,解决下载速度慢的问题 npm install --registry=https://registry.npm.taobao.org # 启动服务 npm run dev ``` 浏览器访问 http://localhost:80 - 看运行提示: - Local: http://localhost:1024/ - Network: http://192.168.0.117:1024/ ## 发布 ```bash # 构建测试环境 npm run build:stage # 构建生产环境 npm run build:prod ```