增加环境配置

This commit is contained in:
chen wei bo
2025-08-15 14:30:09 +08:00
parent f928e7fabe
commit e64327bf09
15 changed files with 269 additions and 16 deletions
+14
View File
@@ -0,0 +1,14 @@
/**
* 测试环境配置
*/
import { AppConfigShape, Env } from "./env";
export const testConfig: AppConfigShape = {
env: Env.Test,
endpoints: {
httpBase: "http://43.139.27.67:8081/",
socketBase: "wss://www.confessioncontract.com/test/game/ai/response/",
cdn: {
bgm: "https://test-cdn.example.com/BGM/",
},
},
};