mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
|
const { createProxyMiddleware } = require('http-proxy-middleware');
|
||
|
|
||
|
module.exports = function(app) {
|
||
|
app.use(
|
||
|
'/api',
|
||
|
createProxyMiddleware({
|
||
|
target: 'http://localhost:9090',
|
||
|
changeOrigin: true,
|
||
|
})
|
||
|
);
|
||
|
};
|