const ISPROD = window.location.protocol == "https:"; const JITSI_DOMAIN = ISPROD ? "thisisnotajitsi.filefighter.de" : "localhost:8443"; const WEBSOCKET_URL = "ws" + (ISPROD ? "s" : "") + "://" + (ISPROD ? window.location.host : "localhost:9160") + "/ws"; const USER_COOKIE_NAME = "jitsi-rooms-user"; export { JITSI_DOMAIN, WEBSOCKET_URL, USER_COOKIE_NAME };