From 3d8c8146bc488657ad11056811125e48c8aea3a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Thu, 20 Nov 2025 09:13:16 +0800 Subject: [PATCH] =?UTF-8?q?chore(config):=20=E6=9B=B4=E6=96=B0=E6=89=80?= =?UTF-8?q?=E6=9C=89=E7=8E=AF=E5=A2=83=E7=9A=84API=E5=9F=BA=E7=A1=80URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将开发环境API基础URL从mp-api.websoft.top更改为cms-api.websoft.top - 将生产环境API基础URL从mp-api.websoft.top更改为cms-api.websoft.top - 将测试环境API基础URL从mp-api.websoft.top更改为cms-api.websoft.top --- config/env.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/env.ts b/config/env.ts index 5df8d7a..525dff5 100644 --- a/config/env.ts +++ b/config/env.ts @@ -2,19 +2,19 @@ export const ENV_CONFIG = { // 开发环境 development: { - API_BASE_URL: 'https://mp-api.websoft.top/api', + API_BASE_URL: 'https://cms-api.websoft.top/api', APP_NAME: '开发环境', DEBUG: 'true', }, // 生产环境 production: { - API_BASE_URL: 'https://mp-api.websoft.top/api', + API_BASE_URL: 'https://cms-api.websoft.top/api', APP_NAME: '九运售电云', DEBUG: 'false', }, // 测试环境 test: { - API_BASE_URL: 'https://mp-api.websoft.top/api', + API_BASE_URL: 'https://cms-api.websoft.top/api', APP_NAME: '测试环境', DEBUG: 'true', }