| 123456789101112131415161718192021222324 |
- const CONFIG = {
- // 开发环境配置
- development: {
- assetsPath: '/static', // 静态资源路径
- // baseUrl: 'http://222.143.144.10:8002/', // 后台接口请求地址
- // baseUrl: 'http://192.168.1.37:8000/',
- baseUrl: 'http://192.168.8.10:8033/',
- hostUrl: '', // H5地址(前端运行地址)
- weixinAppId: '' // 微信公众号appid
- },
- // 生产环境配置
- production: {
- assetsPath: '/static', // 静态资源路径
- // baseUrl: 'http://222.143.144.10:8002/', // 后台接口请求地址
- baseUrl: 'http://192.168.1.37:8000/',
- hostUrl: '', // H5地址(前端运行地址)
- weixinAppId: '' // 微信公众号appid
- }
- };
- export default CONFIG[process.env.NODE_ENV];
|