summaryrefslogtreecommitdiffstats
path: root/ui/src/env.ts
blob: 82377415be498ff7c9fe7733bd8333e90caf7f6f (plain)
1
2
3
4
5
6
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`;