关闭sdk屏蔽

This commit is contained in:
luying
2022-07-02 13:51:30 +08:00
parent 59954961ee
commit ddc980456b
3 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
import { pinus } from "pinus";
export function isDevelopEnv() {
const envs = ['development', 'monitor']
return envs.indexOf(pinus.app.get('env')) != -1;
}