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