const { createProxyMiddleware } = require('http-proxy-middleware'); module.exports = function (app) { app.use(createProxyMiddleware('/image', { target: 'http://localhost:8080', secure: false, changeOrigin: true, pathRewrite: { "^/image": "/image" } })) }