http-proxy-middleware
1 const proxy = require('http-proxy-middleware'); 2 3 const urlData = ['api']; 4 5 module.exports = function (app) { 6 urlData.forEach(v => { 7 app.use(proxy( 8 '/' + v, 9 { 10 target: 'http://localhost:8080', 11 changeOrigin: true, 12 } 13 )) 14 }) 15 };

浙公网安备 33010602011771号