fix: 配置文件key为字符串

This commit is contained in:
TsMask
2023-12-08 17:17:00 +08:00
parent 6210b87c84
commit f110d0e697

View File

@@ -21,7 +21,7 @@
const host = '192.168.8.100:3030';
// Service Address 服务地址
sessionStorage.setItem(baseUrl, `http://${host}`);
sessionStorage.setItem('baseUrl', `http://${host}`);
// websocket Address
sessionStorage.setItem(wsUrl, `ws://${host}`);
sessionStorage.setItem('wsUrl', `ws://${host}`);
})();