diff --git a/src/store/socket.js b/src/store/socket.js index dd6fd5b..6d70bc5 100644 --- a/src/store/socket.js +++ b/src/store/socket.js @@ -1,6 +1,6 @@ class LiveSession { constructor(store) { - this._wss = "wss://live.clocktower.online:8080/"; + this._wss = "wss://townsquaremsg.clocktower.guru:8080/"; // this._wss = "ws://localhost:8081/"; // uncomment if using local server with NODE_ENV=development this._socket = null; this._isSpectator = true; diff --git a/vue.config.js b/vue.config.js index e55f412..3e1075e 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,5 +1,5 @@ module.exports = { // if the app is supposed to run on Github Pages in a subfolder, use the following config: // publicPath: process.env.NODE_ENV === "production" ? "/townsquare/" : "/" - publicPath: process.env.NODE_ENV === "production" ? "/townsquare/" : "/", + publicPath: process.env.NODE_ENV === "production" ? "/townsquare/" : "/" };