You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
445 B
19 lines
445 B
type ProxyItem = [string, string];
|
|
|
|
type ProxyList = ProxyItem[];
|
|
|
|
const regExps = (value: string, reg: string): string => {
|
|
return value.replace(new RegExp(reg, "g"), "");
|
|
};
|
|
|
|
export function createProxy(list: ProxyList = []) {
|
|
const ret: any = {};
|
|
for (const [prefix, target] of list) {
|
|
ret[prefix] = {
|
|
target: target,
|
|
changeOrigin: true,
|
|
rewrite: (path: string) => regExps(path, prefix)
|
|
};
|
|
}
|
|
return ret;
|
|
}
|