本地代理

 h5:{
    "router" : {
               "mode" : "history"
           },
           "devServer" : {
               "https" : false,
            // "port" : 80,
            "proxy" : {
                "/api" : {
                    "target" : "xxxx.xx.xx",
                    "changeOrigin" : true,
                    "secure" : false,
                    "pathRewrite" : {
                        "^/api" : "/"
                    }
                }
            }
           } 
 }

nginx 伪静态

server
{    


...


# 添加vue项目子目录 history模式的路由访问
    # 注意要和项目中配置的base一样 [域名+/web]
    location /web{
      # 这里是 root + /web
      alias /www/wwwroot/xxxxxx.xxx.xxx/web;
      
      #vue中配置的 base+/index.html
      try_files $uri $uri/ /web/index.html;
      
      # index index.html; #这一行默认要不要都可以,看你自己的文件名决定
    }


...
}