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
343 B

2 years ago
import { isDevMode } from '@/utils/env'
// System default cache time, in seconds
export const DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7
// aes encryption key
export const cacheCipher = {
key: '_11111000001111@',
iv: '@11111000001111_'
}
// Whether the system cache is encrypted using aes
export const enableStorageEncryption = !isDevMode()