12345678910111213141516171819202122232425 |
- const globalData = {
- // 正式服务器
- // publicUrl: 'https://sqdx.jiaxintech.com',
- // publicUrl2: 'https://sqdx.jiaxintech.com',
- // publicUrl3: 'https://sqdx.jiaxintech.com',
- // publicSocketUrl: 'wss://sqdx.jiaxintech.com'
- // 测试服务器
- publicUrl: 'https://sqdx.windd.cn',
- publicUrl2: 'https://sqdx.windd.cn',
- publicUrl3: 'https://sqdx.windd.cn',
- publicSocketUrl: 'wss://sqdx.windd.cn'
- // 本地huyubo
- // publicUrl: 'http://10.16.4.19:8090',
- // publicUrl2: 'http://10.16.4.19:8090',
- // publicUrl3: 'http://10.16.4.19:8090',
- // publicSocketUrl: 'ws://10.16.4.19:8090'
- // 本地luyu
- // publicUrl: 'http://10.16.10.139:8090',
- // publicUrl2: 'http://10.16.10.139:8090',
- // publicUrl3: 'http://10.16.10.139:8090',
- // publicSocketUrl: 'ws://10.16.10.139:8090'
- };
- module.exports = {
- globalData: globalData,
- }
|