12 lines
196 B
JavaScript
12 lines
196 B
JavaScript
|
const proxy = require('http-proxy-middleware');
|
||
|
|
||
|
module.exports = function(app) {
|
||
|
app.use(
|
||
|
'/api',
|
||
|
proxy({
|
||
|
target: 'http://localhost:8080',
|
||
|
changeOrigin: true
|
||
|
})
|
||
|
);
|
||
|
};
|