.env.production 521 B

123456789101112131415
  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. # 正式环境,当你需要打包到测试环境且需要开启Gzip的时候,你需要使用上面那个
  9. # base websocket
  10. # VUE_APP_BASE_WEBSOCKET = 'ws://admin.bjzxtw.org.cn:9506'
  11. # # base api
  12. # VUE_APP_BASE_API = 'https://admin.bjzxtw.org.cn/zxtapi'