This repository has been archived on 2020-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
lemmy/ui/src/env.ts
Dessalines 907064b94e Changing port, adding icon.
- Fixes #46
- Fixes #37
2019-04-06 16:48:54 -07:00

2 lines
165 B
TypeScript

export const endpoint = `${window.location.hostname}:8536`;
export let wsUri = (window.location.protocol=='https:') ? 'wss://' : 'ws://' + endpoint + '/service/ws';