12 lines
152 B
TypeScript
Raw Permalink Normal View History

2023-11-22 17:46:08 +08:00
2023-11-22 03:51:37 +08:00
//打包环境
export enum Env{
Server, //服务器模式
H5, //H5模式
}
//当前环境
2023-11-22 17:46:08 +08:00
export const EnvCurrent:Env = Env.H5;