mirror of
https://github.com/wah-su/mstickers.git
synced 2025-04-06 00:04:36 +00:00
11 lines
No EOL
370 B
JavaScript
11 lines
No EOL
370 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}`)
|
|
}
|
|
}; |