Files
fe.ems.vue3/public/default/config.js
2023-10-20 17:53:57 +08:00

17 lines
443 B
JavaScript

/**
* 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)
})();