prometheus/web/ui/react-app/src/setupProxy.js

12 lines
233 B
JavaScript
Raw Normal View History

const { createProxyMiddleware } = require('http-proxy-middleware');
module.exports = function(app) {
app.use(
'/api',
createProxyMiddleware({
target: 'http://localhost:9090',
changeOrigin: true,
})
);
};