From 0fb46cb43fec39971da83ab311e77213c0c155da Mon Sep 17 00:00:00 2001 From: "theis.gaedigk" Date: Fri, 15 Aug 2025 12:09:07 +0200 Subject: [PATCH] fix: update HMR protocol to secure WebSocket (wss) --- frontend/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 341a234..cdfabb4 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -12,7 +12,7 @@ export default defineConfig({ hmr: { host: "lose.the1s.de", port: 8501, - protocol: "ws", + protocol: "wss", }, }, });