study_xxqg/web/xxqg/src/setupProxy.js

11 lines
280 B
JavaScript
Raw Normal View History

2022-04-20 13:31:46 +00:00
const { createProxyMiddleware } = require('http-proxy-middleware');
module.exports = function(app) {
app.use("/api",createProxyMiddleware({
target: "http://127.0.0.1:8083",
changeOrigin: true,
pathRewrite:{
"/api":"/"
}
}))
}