diff --git a/common/env.js b/common/env.js index 5e6811b..7e8c613 100644 --- a/common/env.js +++ b/common/env.js @@ -33,7 +33,7 @@ const testing = { }; // 根据环境变量选择对应配置 -let currentEnv = development; +let currentEnv = production; // 判断当前环境 // #ifdef H5 @@ -45,7 +45,7 @@ if (process.env.NODE_ENV === 'production') { // #endif // #ifdef MP-WEIXIN -currentEnv =testing;//小程序默认使用测试环境配置 +// currentEnv =testing;//小程序默认使用测试环境配置 // currentEnv = production; // 小程序默认使用生产环境配置 // #endif