1 const { createProxyMiddleware } = require('http-proxy-middleware');
2 module.exports = function(app) {
3 // /api 表示代理路径
4 target 表示目标服务器的地址
5 app.use(
6 '/api/system', 7 createProxyMiddleware({
8 http://localhost:4000/ 地址只是示例,实际地址以项目为准
9 target: 'http://127.0.0.1:8081'10 跨域时一般都设置该值 为 true
11 changeOrigin: true12 重写接口路由
13 pathRewrite: {
14 '^/admin': '',// 这样处理后,最终得到的接口路径为: http://localhost:8080/xxx
15 }
16 })
17 );
18
19 app.use(
20 '/admin/example'21 22 target: 'http://127.0.0.1:8080'23 changeOrigin: 24 25 26 }
1 const proxy=require('http-proxy-middleware');
const {createProxyMiddleware}=require('http-proxy-middleware');
1 server:
2 port: 8081
3 servlet:
4 context-path: /api
5