本项目为 pocassist 的前端项目。由react + antd开发。
yarn start
打包:yarn build
安装nginx,修改nginx.conf反向代理后端。
upstream pocassistAPI {
# 配置后端端口
server 127.0.0.1:1231;
}
server {
listen 80;
location / {
# 配置build文件夹路径
root /opt/pocassistWEB/build/;
}
location /api/ {
proxy_pass http://pocassistAPI/api/;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}