proxy.js 190 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 export function createProxy(prefix, target) { const ret = {}; ret[prefix] = { target, changeOrigin: true, // rewrite: (path) => path.replace(/^\/api/, '') } return ret }