export function getClashWsUrl(): string { const { hostname } = window.location; return `ws://${hostname}:9090`; } export function getClashUIUrl(): string { const { hostname } = window.location; return `http://${hostname}:9090/ui`; }