mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 16:09:41 +00:00
5 lines
269 B
TypeScript
Vendored
5 lines
269 B
TypeScript
Vendored
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`;
|