Start with websocket backend connection

This commit is contained in:
qvalentin 2023-01-21 11:18:41 +01:00
parent 739c05daa1
commit 279d7ea502
4 changed files with 56 additions and 1 deletions

View file

@ -1,3 +1,4 @@
const JITSI_DOMAIN = "thisisnotajitsi.filefighter.de";
const WEBSOCKET_URL = "ws" + (window.location.protocol == "https:" ? "s" : "") + "://" + window.location.host + "/ws"
export { JITSI_DOMAIN };
export { JITSI_DOMAIN, WEBSOCKET_URL };