feat(*): Change prod ws url

This commit is contained in:
Josh Creek
2023-07-10 19:45:38 +00:00
parent 615e30eea7
commit 7087f579f3
+1 -1
View File
@@ -11,7 +11,7 @@ function connectToWebSocket(roomId, onMessageReceived) {
if (isDevelopment) {
socket = new WebSocket(`ws://localhost:8080`);
} else {
socket = new WebSocket(`wss://jcreek.ddns.net`);
socket = new WebSocket(`ws://websocket.jcreek.co.uk`);
}
socket.addEventListener('open', () => {