in src/front/src/setupProxy.js [3:24]
module.exports = function(app) {
app.use(
'/atel/',
createProxyMiddleware({
target: 'https://www.astronomerstelegram.org',
changeOrigin: true,
pathRewrite: {
'^/atel/': '/'
}
})
);
app.use(
'/gcn/',
createProxyMiddleware({
target: 'https://gcn.nasa.gov/circulars',
changeOrigin: true,
pathRewrite: {
'^/gcn/': '/'
}
})
);
};