chore(config): 更新所有环境的API基础URL

- 将开发环境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
This commit is contained in:
2025-11-20 09:13:16 +08:00
parent f8bd1972b4
commit 3d8c8146bc

View File

@@ -2,19 +2,19 @@
export const ENV_CONFIG = { export const ENV_CONFIG = {
// 开发环境 // 开发环境
development: { development: {
API_BASE_URL: 'https://mp-api.websoft.top/api', API_BASE_URL: 'https://cms-api.websoft.top/api',
APP_NAME: '开发环境', APP_NAME: '开发环境',
DEBUG: 'true', DEBUG: 'true',
}, },
// 生产环境 // 生产环境
production: { production: {
API_BASE_URL: 'https://mp-api.websoft.top/api', API_BASE_URL: 'https://cms-api.websoft.top/api',
APP_NAME: '九运售电云', APP_NAME: '九运售电云',
DEBUG: 'false', DEBUG: 'false',
}, },
// 测试环境 // 测试环境
test: { test: {
API_BASE_URL: 'https://mp-api.websoft.top/api', API_BASE_URL: 'https://cms-api.websoft.top/api',
APP_NAME: '测试环境', APP_NAME: '测试环境',
DEBUG: 'true', DEBUG: 'true',
} }