This commit is contained in:
zpc 2025-04-16 21:00:33 +08:00
parent 5c426da5c8
commit cf050eece3

View File

@ -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