Files
tank-front/config/setupProxy.js
T
2020-06-05 23:45:01 +08:00

18 lines
327 B
JavaScript

const proxy = require('http-proxy-middleware');
module.exports = function (app) {
//为了解决前端开发时跨域问题,配置后台接口代理。
app.use(proxy(
'/api',
{
target: 'http://localhost:6010',
changeOrigin: true,
pathRewrite: {
'^/api': '/api'
}
}
));
};