You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/WebSPA/wwwroot/js/config.js

8 lines
434 B

var config = (function(global){
global.apigateway = window.location.protocol + '//' + window.location.host; // 设置通过API网关访问
global.iotCenterUrl = global.apigateway + '/IoTCenter'; // IoT服务API
global.hubUrl = global.apigateway + '/IoTCenter/hub?group=page'; // 设备WebSocket访问地址
global.liverUrl = global.apigateway; // 流媒体服务器地址
return global;
})(window.config||{});