.env.production 588 B

123456789101112131415161718192021
  1. # just a flag
  2. ENV = 'production'
  3. # 测试环境,当你需要打包到正式环境且需要开启Gzip的时候,你需要从下面选择一个
  4. # base api
  5. VUE_APP_BASE_API = 'http://183.131.25.186:9501'
  6. # base websocket
  7. VUE_APP_BASE_WEBSOCKET = 'ws://183.131.25.186:9506'
  8. # 预发布环境
  9. # base websocket
  10. # VUE_APP_BASE_WEBSOCKET = 'ws://116.131.8.26:9501:9506'
  11. # # base api
  12. # VUE_APP_BASE_API = 'http://116.131.8.26:9501'
  13. # 正式环境
  14. # base websocket
  15. # VUE_APP_BASE_WEBSOCKET = 'ws://admin.bjzxtw.org.cn:9506'
  16. # # base api
  17. # VUE_APP_BASE_API = 'https://admin.bjzxtw.org.cn/zxtapi'