radames's picture
first
a0f1951
raw
history blame contribute delete
332 Bytes
const { createProxyMiddleware } = require('http-proxy-middleware');
module.exports = function (app) {
app.use(
'/api',
createProxyMiddleware({
pathRewrite: {
'^/api': '',
},
target: 'http://localhost:7860',
changeOrigin: true,
})
);
};