使用vue前后端分离部署时,若前端与api不在同一个域,那么会遇到很多的问题(比如跨域引起的问题)。但是我们可以采用nginx反向代理的方式,解决这个烦恼。 nginx主要配置内容如下: location / { root D:/thSites/xbjs.web/dist; index index.html index.htm; } location ~ ^/(api|css|font-awesome|js|images|)/ { proxy_redirect off; proxy_set_header Host …