.env.testing 668 B

1234567891011121314151617181920
  1. # 如需添加更多环境变量,请以 VITE_APP_ 开头声明
  2. # 在代码中使用 import.meta.env.VITE_APP_XXX 获取指定变量
  3. # 环境配置标识
  4. VITE_APP_ENV = 'testing'
  5. # 统一接口域名
  6. VITE_APP_BASE_API = 'https://apidev.lamianchain.com'
  7. # 客服websocket接口请求地址,https对应wss,http对应ws
  8. VITE_APP_WS_IM_API = 'wss://imdev.lamianchain.com'
  9. # 移动端域名地址配置 - 用于生成二维码跳转链接
  10. VITE_APP_H5_DOMAIN = 'https://h5dev.lamianchain.com'
  11. # 商家端后台地址
  12. VITE_APP_MERCHANT_PLATFORM_URL = 'https://shdev.lamianchain.com'
  13. # 图片域名
  14. VITE_APP_RESOURCES_URL = 'https://imgdev.lamianchain.com/mall4j/'