chore(config): trial 环境域名切换到正式网关

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
17792275749
2026-09-11 14:09:32 +08:00
co-authored by Claude Sonnet 4.6
parent 69d8fa75a5
commit b3e2a11423
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -8,8 +8,8 @@ const DOMAINS: Record<EnvType, { domain1: string; domain2: string }> = {
domain2: 'http://10.10.10.10:8889/weight',
},
trial: {
domain1: 'http://10.10.10.10:8889',
domain2: 'http://10.10.10.10:8889/weight',
domain1: 'http://device.shuziweidao.com:80/gateway',
domain2: 'http://device.shuziweidao.com:80/weight',
},
release: {
domain1: 'http://device.shuziweidao.com:80/gateway',
+1 -1
View File
@@ -3,7 +3,7 @@ import { ENV, type EnvType } from '../env/index'
/** 各环境接口网关地址:develop / trial 走测试网关,release 走正式网关 */
const BASE_URLS: Record<EnvType, string> = {
develop: 'http://10.10.10.10:8889/',
trial: 'http://10.10.10.10:8889/',
trial: 'https://device.shuziweidao.com/gateway/',
release: 'https://device.shuziweidao.com/gateway/',
}