vue3打包后 访问不了后端接口问题
解决办法配置nginx反向代理server {listen8089;server_namexxx.xxx.xxx.xxx;root/root/awzwebdemo/vueweb/dist;indexindex.html;location ^~/api/ {proxy_pass http://xxx.xxx.xxx.xxx:8080/;}
·
解决办法
配置nginx反向代理
server {
listen 8089;
server_name xxx.xxx.xxx.xxx;
root /root/awzwebdemo/vueweb/dist;
index index.html;
location ^~/api/ {
proxy_pass http://xxx.xxx.xxx.xxx:8080/;
}
搞定
更多推荐
已为社区贡献4条内容
所有评论(0)