1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00
unleash.unleash/frontend/src/setupProxy.js

28 lines
599 B
JavaScript
Raw Normal View History

const { createProxyMiddleware } = require('http-proxy-middleware');
const API_URL = process.env.UNLEASH_API || 'http://localhost:4242';
module.exports = function (app) {
app.use(
'/api',
createProxyMiddleware({
target: API_URL,
changeOrigin: true,
})
);
app.use(
'/auth',
createProxyMiddleware({
target: API_URL,
changeOrigin: true,
})
);
app.use(
'/logout',
createProxyMiddleware({
target: API_URL,
changeOrigin: true,
})
);
};