2020-02-07 07:04:18 +04:00
|
|
|
const proxy = require('http-proxy-middleware');
|
|
|
|
|
2020-02-24 23:29:11 +04:00
|
|
|
module.exports = function (app) {
|
2020-02-07 07:04:18 +04:00
|
|
|
app.use(
|
|
|
|
'/api',
|
|
|
|
proxy({
|
|
|
|
target: 'http://localhost:8080',
|
|
|
|
changeOrigin: true
|
|
|
|
})
|
|
|
|
);
|
2020-02-24 23:29:11 +04:00
|
|
|
|
|
|
|
app.use(
|
|
|
|
'/static/examples',
|
|
|
|
proxy({
|
|
|
|
target: 'http://localhost:8080',
|
|
|
|
changeOrigin: true
|
|
|
|
})
|
|
|
|
);
|
2020-02-07 07:04:18 +04:00
|
|
|
};
|