import { isDevMode } from '../utils/config'; // System default cache time, in seconds const DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7; // aes encryption key const cacheCipher = { key: 'D30A5C4017C8495DA18993C411B101A1', iv: '', }; // Whether the system cache is encrypted using aes const enableStorageEncryption = !isDevMode(); export { cacheCipher, DEFAULT_CACHE_TIME, enableStorageEncryption };