ligo/tools/webide/packages/client/src/setupProxy.js
2020-02-24 19:29:11 +00:00

20 lines
321 B
JavaScript

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