14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
/**
|
|
* 测试环境配置
|
|
*/
|
|
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/",
|
|
},
|
|
},
|
|
}; |