mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
22 lines
581 B
TypeScript
22 lines
581 B
TypeScript
import type { ProxyOptions } from 'vite';
|
|
|
|
/**
|
|
* Configure according to the proxy list
|
|
* @param proxyList
|
|
*/
|
|
export function resolveProxy(proxyList: [string, string][] = []) {
|
|
const proxy: Record<string, ProxyOptions> = {};
|
|
for (const [prefix, target] of proxyList) {
|
|
const isHttps = /^https:\/\//.test(target);
|
|
proxy[prefix] = {
|
|
target,
|
|
changeOrigin: true,
|
|
ws: true,
|
|
rewrite: path => path.replace(new RegExp(`^${prefix}`), ''),
|
|
// https is require secure=false
|
|
...(isHttps ? { secure: false } : {}),
|
|
};
|
|
}
|
|
return proxy;
|
|
}
|