mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
9 lines
277 B
TypeScript
Vendored
9 lines
277 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`;
|