webpack之proxyTable设置跨域

一、对于同一接口名:

let url = 'api/';

 

webpackDevServer.config.js:

proxy: {

'/api': {

target: 'http://***', //目标接口域名

secure: false,

changeOrigin: true //允许跨域

}

}

 

二、对于多接口名:

let url = 'api/';

 

webpackDevServer.config.js:

proxy: {

'/api': {

target: 'http://***', //目标接口域名

secure: false,

changeOrigin: true,  //允许跨域

pathRewrite: {

'^/api': '/'  //重写接口

}

},

cssSourceMap: false  //不加该属性页面渲染出现问题

}

你可能感兴趣的:(webpack)