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