mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 15:54:31 +00:00
11 lines
352 B
JavaScript
11 lines
352 B
JavaScript
let webSocket = new WebSocket(`ws://${window.location.hostname}:3001`);
|
|
webSocket.onmessage = function (e) {
|
|
if (e.data == "RELOAD") {
|
|
console.log("Reloading page after build");
|
|
location.reload();
|
|
} else if (e.data == "CONNECTED") {
|
|
console.log("Connected to server");
|
|
} else {
|
|
console.warn(`unknown data received: ${e}`);
|
|
}
|
|
};
|