16 lines
214 B

1 year ago
import UserCache from "@/config/UserCache";
2 years ago
/**
* 当前环境
* @type {string}
*/
const ENV = 'dev';
/**
* 打开日志打印
* @type {boolean}
*/
const OPEN_LOG = true;
1 year ago
export {OPEN_LOG, ENV, UserCache}