| 1234567891011121314151617181920 |
- # 如需添加更多环境变量,请以 VITE_APP_ 开头声明
- # 在代码中使用 import.meta.env.VITE_APP_XXX 获取指定变量
- # 环境配置标识
- VITE_APP_ENV = 'production'
- # 统一接口域名
- VITE_APP_BASE_API = 'https://api.lamianchain.com'
- # 客服websocket接口请求地址,https对应wss,http对应ws
- VITE_APP_WS_IM_API = 'wss://im.lamianchain.com'
- # 移动端域名地址配置 - 用于生成二维码跳转链接
- VITE_APP_H5_DOMAIN = 'https://h5.lamianchain.com'
- # 商家端后台地址
- VITE_APP_MERCHANT_PLATFORM_URL = 'https://sh.lamianchain.com'
- # 图片域名
- VITE_APP_RESOURCES_URL = 'https://qhhllmoss.bj.bcebos.com/'
|