fix: 更新配置文件中的主机端口号

This commit is contained in:
TsMask
2025-04-01 18:33:22 +08:00
parent f0e299b704
commit df8f75e16f

View File

@@ -15,7 +15,7 @@
const protocol = window.location.protocol
let wsprotocol = "ws:"
const hostname = window.location.hostname
let host = `${hostname}:33030`;
let host = `${hostname}:33080`;
if (protocol === 'https:') {
host = `${hostname}:33443`;
wsprotocol = "wss:"