feat(config): update API base URLs for production and test environments

- Changed production API base URL from mp-api to clinic-api
- Updated test environment API base URL from mp-api to clinic-api
- Maintained existing APP_NAME and DEBUG configurations
This commit is contained in:
2025-11-17 09:32:01 +08:00
parent e70eb5de69
commit d8011065d9
21 changed files with 2 additions and 4746 deletions

View File

@@ -8,13 +8,13 @@ export const ENV_CONFIG = {
},
// 生产环境
production: {
API_BASE_URL: 'https://mp-api.websoft.top/api',
API_BASE_URL: 'https://clinic-api.websoft.top/api',
APP_NAME: '通源堂健康生态平台',
DEBUG: 'false',
},
// 测试环境
test: {
API_BASE_URL: 'https://mp-api.websoft.top/api',
API_BASE_URL: 'https://clinic-api.websoft.top/api',
APP_NAME: '测试环境',
DEBUG: 'true',
}