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.

14 lines
364 B

2 years ago
import { isDevMode } from '@/utils/env'
// 缓存默认过期时间
2 years ago
export const DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7
// 开启缓存加密后,加密密钥。采用aes加密
2 years ago
export const cacheCipher = {
key: '_11111000001111@',
iv: '@11111000001111_'
}
// 是否加密缓存,默认生产环境加密
2 years ago
export const enableStorageEncryption = !isDevMode()