You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
160 B
16 lines
160 B
2 years ago
|
/**
|
||
|
* 当前环境
|
||
|
* @type {string}
|
||
|
*/
|
||
|
const ENV = 'dev';
|
||
|
|
||
|
/**
|
||
|
* 打开日志打印
|
||
|
* @type {boolean}
|
||
|
*/
|
||
|
const OPEN_LOG = true;
|
||
|
|
||
|
|
||
|
|
||
|
export {OPEN_LOG, ENV}
|