jitsi-roomsv2/frontend/src/background/constants.ts

5 lines
214 B
TypeScript
Raw Normal View History

2023-01-07 19:06:04 +01:00
const JITSI_DOMAIN = "thisisnotajitsi.filefighter.de";
const WEBSOCKET_URL = "ws" + (window.location.protocol == "https:" ? "s" : "") + "://" + window.location.host + "/ws"
2023-01-07 19:06:04 +01:00
export { JITSI_DOMAIN, WEBSOCKET_URL };