mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
9 lines
247 B
TypeScript
9 lines
247 B
TypeScript
/** 本地存储前缀 */
|
|
export const STORAGE_PREFIX = '';
|
|
|
|
/** 本地存储加密密钥 */
|
|
export const STORAGE_ENCRYPT_SECRET = '__CryptoJS_Secret__';
|
|
|
|
/** 本地存储缓存时长 */
|
|
export const STORAGE_DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7;
|