14 lines
349 B
TypeScript
14 lines
349 B
TypeScript
/**
|
|
* 生产环境配置
|
|
*/
|
|
import { AppConfigShape, Env } from "./env";
|
|
export const prodConfig: AppConfigShape = {
|
|
env: Env.Prod,
|
|
endpoints: {
|
|
httpBase: "https://xchat188.com/",
|
|
socketBase: "wss://www.confessioncontract.com/game/ai/response/",
|
|
cdn: {
|
|
bgm: "https://hxzgame.vip.hnhxzkj.com/lzx/XiangQin/BGM/",
|
|
},
|
|
},
|
|
}; |