summaryrefslogtreecommitdiffstats
path: root/ui/src/env.ts
blob: a0cdcdb06285366036f11ca7efb66546d4cb928c (plain)
1
2
3
4
let host = `${window.location.hostname}`;
let port = `${window.location.port == "4444" ? '8536' : window.location.port}`;
let endpoint = `${host}:${port}`;
export let wsUri = `${(window.location.protocol=='https:') ? 'wss://' : 'ws://'}${endpoint}/api/v1/ws`;