vue2生产环境配置nginx代理

388 阅读1分钟

vue前端: vue.config.js里面

devServer: {
  open: true,
  proxy: {
    '/apis': {
      target: 'https://www.baidu.com/',
      ws: true, 
      changeOrigin: true, 
      pathRewrite: {
        '^/apis': '/'
      }
    }
  }
}

nginx配置:

location /apis {
    rewrite  ^/apis/(.*)$ /$1 break;
    proxy_pass   https://www.baidu.com/;
}