16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
/**
|
|
* 测试环境配置
|
|
*/
|
|
import { AppConfigShape, Env } from "./env";
|
|
export const testConfig: AppConfigShape = {
|
|
env: Env.Test,
|
|
endpoints: {
|
|
httpBase: "http://120.25.215.205:20600/",
|
|
socketBase: "wss://www.confessioncontract.com/test/game/ai/response/",
|
|
cdn: {
|
|
bgm: "https://test-cdn.example.com/BGM/",
|
|
},
|
|
},
|
|
appVersion: "0.8.3",
|
|
};
|