/** * 配置通用 */ let base = ''; if(process.env.NODE_ENV=="development"){ base = 'https://wx.hw.hongweisoft.com/veterans/app'; // base = 'http://172.16.90.110:7200/app'; } else if(process.env.NODE_ENV=="production"){ base = 'https://wx.hw.hongweisoft.com/veterans/app'; // base = 'https://veterwebpro.hw.hongweisoft.com/veterans-prod-api/app'; } const config = { baseUrl: base ,// 201服务器地址 uploadUrl: 'https://wx.hw.hongweisoft.com/veterans/file/upload/single/minio', version: '1.0.1' } export { config }