Compare commits

...

2 commits

Author SHA1 Message Date
Hayden
2cd107b8bd
explicity dependency 2023-08-24 09:20:53 -05:00
Hayden
a3cce59a2a
fix https connection 2023-08-23 12:27:34 -05:00
3 changed files with 10 additions and 1 deletions

View file

@ -13,7 +13,12 @@ let socket: WebSocket | null = null;
const listeners = new Map<ServerEvent, (() => void)[]>();
function connect(onmessage: (m: EventMessage) => void) {
const ws = new WebSocket(`ws://${window.location.host}/api/v1/ws/events`);
let protocol = "ws";
if (window.location.protocol === "https:") {
protocol = "wss";
}
const ws = new WebSocket(`${protocol}://${window.location.host}/api/v1/ws/events`);
ws.onopen = () => {
console.debug("connected to server");

View file

@ -48,6 +48,7 @@
"daisyui": "^2.24.0",
"dompurify": "^3.0.0",
"h3": "^1.7.1",
"http-proxy": "^1.18.1",
"markdown-it": "^13.0.1",
"pinia": "^2.0.21",
"postcss": "^8.4.16",

View file

@ -47,6 +47,9 @@ dependencies:
h3:
specifier: ^1.7.1
version: 1.7.1
http-proxy:
specifier: ^1.18.1
version: 1.18.1
markdown-it:
specifier: ^13.0.1
version: 13.0.1