From 2656c674ea6c31ad7f13bb75d01c218082fdb43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=8C=AF=E8=8A=B3?= Date: Thu, 12 Dec 2024 17:28:48 +0800 Subject: [PATCH] fix: delete the port of websocket connecturl --- web/src/utils/socket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/utils/socket.ts b/web/src/utils/socket.ts index 3dc2e62..58efce1 100644 --- a/web/src/utils/socket.ts +++ b/web/src/utils/socket.ts @@ -30,7 +30,7 @@ interface socket { const socket: socket = { websocket: null, - connectURL: "wss://"+window.location.host+":8888/plugin/ws/logs", + connectURL: "wss://"+window.location.host+"/plugin/ws/logs", // 开启标识 socket_open: false, // 心跳timer -- Gitee