From 2989e4a1d24f9ebdc9ad0b79a13435e54ba3463e Mon Sep 17 00:00:00 2001 From: hflllll Date: Mon, 13 Oct 2025 11:55:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(config):=20=E6=9B=B4=E6=96=B0=E7=94=9F?= =?UTF-8?q?=E4=BA=A7=E7=8E=AF=E5=A2=83=E9=85=8D=E7=BD=AE=E4=B8=BA=E6=AD=A3?= =?UTF-8?q?=E5=BC=8F=E7=8E=AF=E5=A2=83=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将测试环境配置切换为生产环境,并更新生产环境的API基础URL和阿里云OSS相关配置为正式环境参数 --- config/index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config/index.js b/config/index.js index 2efa37d..3d959dd 100644 --- a/config/index.js +++ b/config/index.js @@ -12,7 +12,7 @@ const envParam = { prod: 'production', } -const env = envParam['test'] +const env = envParam['prod'] // 全局配置 const config = { @@ -25,7 +25,7 @@ const config = { baseURL: 'https://exhibit.augcl.com/exhibit-admin/exhibit', }, production: { - baseURL: 'https://exhibit.augcl.com/exhibit-admin/exhibit', + baseURL: 'https://www.cscsm.net/exhibit-admin/exhibit', } }, @@ -46,11 +46,11 @@ const config = { staticDomain: 'https://image.hhlm1688.com/' }, production: { - aliOSS_accessKey: 'LTAI5tQSs47izVy8DLVdwUU9', - aliOSS_secretKey: 'qHI7C3PaXYZySr84HTToviC71AYlFq', - aliOSS_bucketName: 'hanhaiimage', - endpoint: 'oss-cn-shenzhen.aliyuncs.com', - staticDomain: 'https://image.hhlm1688.com/' + aliOSS_accessKey: 'LTAI5tApKcF8GpHccNQkmR7c', + aliOSS_secretKey: 'NhgnqbJLh1M0ZO0OBopBFvq02KVJd7', + aliOSS_bucketName: 'showpiece', + endpoint: 'oss-cn-beijing.aliyuncs.com', + staticDomain: 'https://image.cscsm.net/' }, },