| | |
| | | |
| | | # 服务地址 |
| | | VITE_APP_URL = https://wrj.shuixiongit.com/api |
| | | # 域名 |
| | | VUE_APP_AREA_NAME = https://wrj.shuixiongit.com |
| | | |
| | |
| | | |
| | | # 是否在打包时开启压缩,支持 gzip 和 brotli |
| | | VITE_BUILD_COMPRESS = gzip |
| | | # 域名 |
| | | VUE_APP_AREA_NAME = https://drone.shuixiongit.com |
| | |
| | | export function getWebsocketUrl() { |
| | | const token = getToken(); |
| | | // const url = CURRENT_CONFIG.websocketURL |
| | | const url = 'wss://wrj.shuixiongit.com/drone-wss/api/v1/ws?x-auth-token=' + encodeURI(token); |
| | | const url = `wss://${process.env.VUE_APP_AREA_NAME}/drone-wss/api/v1/ws?x-auth-token=${encodeURI(token)}`; |
| | | return url; |
| | | } |