/** * config 临时配置参数 */ (function () { // host = ip:prot const host = "192.168.12.12:3030"; // 服务地址 const baseUrl = `http://${host}` sessionStorage.setItem("baseUrl", baseUrl) // websocket const wsUrl = `ws://${host}` sessionStorage.setItem("wsUrl", wsUrl) })();