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