Merge pull request #2 from davotronic5000/develop

pointing at new sockets server
This commit is contained in:
Dave 2023-01-13 16:53:48 +00:00 committed by GitHub
commit 36776583e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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/" : "/"
};