const proxy = require('koa-proxy'); const convert = require('koa-convert'); module.exports = { entry(app, router, opts) { app.use(convert(proxy({ host: opts.host, match: opts.match, map(path) { return path.replace(opts.match, ''); }, }))); // Object.keys(opts).forEach((option) => { // app.use(convert(proxy({ // host: opts[option].host, // match: opts[option].match, // map(path) { // return path.replace(opts[option].match, ''); // }, // }))); // }); }, };