Files
18xchat/assets/Scripts/chat18x/config/env/dev.ts
T

16 lines
328 B
TypeScript
Raw Normal View History

2025-08-15 14:29:38 +08:00
/**
* 开发环境配置
*/
import { AppConfigShape, Env } from "./env";
export const devConfig: AppConfigShape = {
env: Env.Dev,
endpoints: {
2025-08-25 11:30:50 +08:00
httpBase: "http://120.25.215.205:20600/",
2025-08-15 14:29:38 +08:00
socketBase: "ws://127.0.0.1:9001/ws/",
cdn: {
bgm: "http://127.0.0.1:8081/BGM/",
},
},
2025-09-25 11:55:14 +08:00
appVersion: "0.8.3",
};