| 12345678910111213141516171819202122232425262728 |
- const CONFIG = {
- // 开发环境配置
- development: {
- assetsPath: '/static', // 静态资源路径
- qqMapKey: '',
- // baseUrl: 'https://api.amazeway.com.cn',
- // hostUrl: 'https://api.amazeway.com.cn', // H5地址(前端运行地址)
- baseUrl: 'https://api.cityexpress168.com.vn', // 后台接口请求地址https://backend.cityexpress168.com.vn
- hostUrl: 'https://api.cityexpress168.com.vn', // H5地址(前端运行地址)https://backend.cityexpress168.com.vn
- websocketUrl: '', // websocket服务端地址
- weixinAppId: '', // 微信公众号appid
- storeId: 0 //
- },
- // 生产环境配置
- production: {
- qqMapKey: '',
- assetsPath: '/static', // 静态资源路径
- // baseUrl: ' http://192.168.1.7:8080',
- // hostUrl: ' http://192.168.1.7:8080', // H5地址(前端运行地址)
- // baseUrl: 'https://api.cityexpress168.com.vn', // 后台接口请求地址
- // hostUrl: 'https://api.cityexpress168.com.vn', // H5地址(前端运行地址)
- websocketUrl: '', // websocket服务端地址
- weixinAppId: '', // 微信公众号appid
- storeId: 0 //
- }
- };
- export default CONFIG[process.env.NODE_ENV];
|