diff --git a/apps/blogai/components/header.tsx b/apps/blogai/components/header.tsx index 33fe66c..a3f9b01 100644 --- a/apps/blogai/components/header.tsx +++ b/apps/blogai/components/header.tsx @@ -206,6 +206,9 @@ export async function getWsBase() { ip = hostHeader.includes(":") ? hostHeader.split(":")[0] : hostHeader; } } + + const finalUrl = `${wsProtocol}://${ip}/api/v1/deploy/ws`; + console.log(".........[WebSocket] Final URL:", finalUrl); return `${wsProtocol}://${ip}/api/v1/deploy/ws`; }