# 启动命令
npm start
# 切换环境
npm start --qa # qa 环境
# 构建命令
npm run build
- antd 主题修改
- editorconfig 文件规范
- prettier 代码规范
- eslint
- stylelint
- babel@7
- postcss
- webpack@4
- api proxy 支持环境切换
- mobx
- sourceMap 地址替换
- git commit msg 规范
- dll 支持
tools/swtich.config.js
- 为了方便跨机调试,项目默认使用局域网 ip 访问方式,如需要支持
localhost
或127.0.0.1
访问,请更改devServer.host
server {
# 禁止访问 txt、sh、map 文件
location ~* \.(txt|sh|map)$ {
deny all;
}
}