20 lines
321 B
JavaScript
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
|
|
})
|
|
);
|
|
};
|