let configs = { baseUrl: 'localhost', isProduction: false, apis: { sz: '', } }; if (process.env.NODE_ENV === 'development') { // 测试环境 configs = Object.assign(configs, { baseUrl: 'http://127.0.0.1:8090', }); } if (process.env.NODE_ENV === 'production') { // 生产环境 configs = Object.assign(configs, { baseUrl: 'https://xxx/', // isProduction: true, }); } export default configs;