diff --git a/utils/index.js b/utils/index.js index 1d0025da..4857ef97 100644 --- a/utils/index.js +++ b/utils/index.js @@ -55,7 +55,8 @@ const getCurrentEnvironment = () => { // 获取当前环境配置 const currentEnv = getCurrentEnvironment(); -const envConfig = environments[currentEnv] || environments.development; +console.log("🚀 ~ currentEnv:", currentEnv) +const envConfig = environments[currentEnv] || environments.production; export const RequsetUrl = envConfig.apiUrl; // 请求地址前缀 export const picUrl = envConfig.picUrl; // 图片地址前缀