From cf050eece335786358f6d236ff5cfe11b96c27e2 Mon Sep 17 00:00:00 2001 From: zpc Date: Wed, 16 Apr 2025 21:00:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/env.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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