| 1234567891011121314151617181920212223242526272829 |
- const CONFIG = {
- // 开发环境配置
- development: {
- assetsPath: '/static', // 静态资源路径
- // baseUrl: 'http://192.168.8.10:8033/',
- // baseUrl: 'https://zyfb.zzrmyy.com/', // 本地外网地址
- baseUrl: 'http://39.164.159.226:8000/', // 本地外网地址
- // baseUrl: 'http://localhost:50973/', // 本地外网地址
- // baseUrl: 'http://172.16.10.22:8000/',
- hostUrl: '', // H5地址(前端运行地址)
- weixinAppId: '' // 微信公众号appid
- },
- // 生产环境配置
- production: {
- assetsPath: '/static', // 静态资源路径
- // baseUrl: 'http://192.168.8.10:8033/',
- // baseUrl: 'http://39.164.159.226:8000/',
- baseUrl: 'https://zyfb.zzrmyy.com/', // 本地外网地址
- // baseUrl: 'http://localhost:50973/', // 本地外网地址
- // baseUrl: 'http://172.16.10.22:8000/',
- hostUrl: '', // H5地址(前端运行地址)
- weixinAppId: '' // 微信公众号appid
- }
- };
- export default CONFIG[process.env.NODE_ENV];
|