123456789101112131415161718192021 |
- # just a flag
- ENV = 'production'
- # 测试环境,当你需要打包到正式环境且需要开启Gzip的时候,你需要从下面选择一个
- # base api
- VUE_APP_BASE_API = 'http://183.131.25.186:9501'
- # base websocket
- VUE_APP_BASE_WEBSOCKET = 'ws://183.131.25.186:9506'
- # 预发布环境
- # base websocket
- # VUE_APP_BASE_WEBSOCKET = 'ws://116.131.8.26:9501:9506'
- # # base api
- # VUE_APP_BASE_API = 'http://116.131.8.26:9501'
- # 正式环境
- # base websocket
- # VUE_APP_BASE_WEBSOCKET = 'ws://admin.bjzxtw.org.cn:9506'
- # # base api
- # VUE_APP_BASE_API = 'https://admin.bjzxtw.org.cn/zxtapi'
|