1.先安裝http-proxy-middleware
npm install http-proxy-middleware --save
yarn add http-proxy-middleware --save
2.在src目錄下創(chuàng)建 setupProxy.js 文件
3.設(shè)置代理(setupProxy.js文件內(nèi)容)
const proxy = require('http-proxy-middleware');
module.exports = function (app) {
app.use(proxy.createProxyMiddleware('/qwl', { // 'qwl' 需要轉(zhuǎn)發(fā)的請求
target: 'https://baidu.com', //接口服務(wù)器地址
// target: 'http://192.168.9.116:8080',
// target: 'http://192.168.9.17:8080',
// target: 'http://192.168.9.19:8080',
changeOrigin: true,
pathRewrite: {
'^/qwl': ''
},
}));
};