Moved WS to /api/ws for easier proxying. Remove outdated migration docs/plan.

This commit is contained in:
2026-02-11 02:17:00 +00:00
parent cd2b757f48
commit 47b690b4da
3 changed files with 2 additions and 139 deletions
@@ -120,7 +120,7 @@ export function useMediaWebSocket() {
// Build WS URL relative to current page
const proto = location.protocol === 'https:' ? 'wss:' : 'ws:';
const url = `${proto}//${location.host}/ws`;
const url = `${proto}//${location.host}/api/ws`;
console.log(`[WS] Connecting to ${url}...`);
ws = new WebSocket(url);