mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-26 03:04:06 -04: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,
|
||
|
|
})
|
||
|
|
);
|
||
|
|
};
|