Fixing endpoint.

pull/64/head
Dessalines 5 years ago
parent a705e81c0c
commit 85d16e8632

@ -1,2 +1,4 @@
export const endpoint = `${window.location.hostname}:8536`;
let host = `${window.location.hostname}`;
let port = `${window.location.port == "4444" ? '8536' : window.location.port}`;
let endpoint = `${host}:${port}`;
export let wsUri = `${(window.location.protocol=='https:') ? 'wss://' : 'ws://'}${endpoint}/service/ws`;

Loading…
Cancel
Save