summaryrefslogtreecommitdiffstats
path: root/ui/src/env.ts
blob: 5003986b51a83e29a9aa5e2d6c24fd60cdbe0a08 (plain)
1
2
3
4
5
6
7
8
9
const host = `${window.location.hostname}`;
const port = `${
  window.location.port == '4444' ? '8536' : window.location.port
}`;
const endpoint = `${host}:${port}`;

export const wsUri = `${
  window.location.protocol == 'https:' ? 'wss://' : 'ws://'
}${endpoint}/api/v1/ws`;