remove development configuration values

This commit is contained in:
Nick Krecklow
2020-05-05 23:47:04 -05:00
parent 49379acc77
commit ac06ae884e
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ export class SocketManager {
webSocketProtocol = 'wss:'
}
this._webSocket = new WebSocket(webSocketProtocol + '//' + location.hostname + ':8080')
this._webSocket = new WebSocket(webSocketProtocol + '//' + location.host)
// The backend will automatically push data once connected
this._webSocket.onopen = () => {