// +---------------------------------------------------------------------- // | CRMEB [ CRMEB璧嬭兘寮€鍙戣€咃紝鍔╁姏浼佷笟鍙戝睍 ] // +---------------------------------------------------------------------- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved. // +---------------------------------------------------------------------- // | Licensed CRMEB骞朵笉鏄嚜鐢辫蒋浠讹紝鏈粡璁稿彲涓嶈兘鍘绘帀CRMEB鐩稿叧鐗堟潈 // +---------------------------------------------------------------------- // | Author: CRMEB Team <admin@crmeb.com> // +---------------------------------------------------------------------- // 璇锋眰鎺ュ彛鍦板潃 濡傛灉娌℃湁閰嶇疆鑷姩鑾峰彇褰撳墠缃戝潃璺緞 const VUE_APP_API_URL = process.env.VUE_APP_BASE_API || `${location.origin}`; const VUE_APP_WS_URL = process.env.VUE_APP_WS_URL || (location.protocol === 'https' ? 'wss' : 'ws') + ':' + location.hostname; const SettingMer = { // 鏈嶅姟鍣ㄥ湴鍧€ httpUrl: VUE_APP_API_URL, // 鎺ュ彛璇锋眰鍦板潃 apiBaseURL: VUE_APP_API_URL + '/api/', // socket杩炴帴 wsSocketUrl: VUE_APP_WS_URL, }; export default SettingMer;