21 lines
716 B
JavaScript
21 lines
716 B
JavaScript
/**
|
|
* =============== Configuration File Description ===============
|
|
*
|
|
* - Nginx Deployment
|
|
* Delete the file with the same name under the same level of loading.js, Nginx proxy address: /omc-api
|
|
*
|
|
* - Non-Nginx Deployment
|
|
* Please make the current file the same level as the loading.js, change the host variable value to the data service access address
|
|
* !!! Note: After modifying the current file, it is recommended to revisit it after closing the browser.
|
|
*
|
|
*/
|
|
(function () {
|
|
// host = ip:port
|
|
const host = '192.168.8.100:3030';
|
|
|
|
// Service Address 服务地址
|
|
sessionStorage.setItem('baseUrl', `http://${host}`);
|
|
// websocket Address
|
|
sessionStorage.setItem('wsUrl', `ws://${host}`);
|
|
})();
|