/** * config 非Nginx部署可使用的配置参数 * Configuration parameters available for non Nginx deployments using config */ (function () { // host = ip:prot const host = "192.168.2.166:3186"; // Service Address 服务地址 const baseUrl = `http://${host}` sessionStorage.setItem("baseUrl", baseUrl) // websocket Address const wsUrl = `ws://${host}` sessionStorage.setItem("wsUrl", wsUrl) })();