mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
|
//打包环境
|
||
|
export enum Env{
|
||
|
Server, //服务器模式
|
||
|
H5, //H5模式
|
||
|
}
|
||
|
|
||
|
//当前环境
|
||
|
export const EnvCurrent:Env = Env.Server;
|