Files
podkop/fe-app-podkop/src/helpers/getClashApiUrl.ts
2025-10-14 22:36:14 +03:00

12 lines
244 B
TypeScript

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`;
}