干燥机配套车间生产管理系统/云平台前端
baoshiwei
2024-12-06 bd11d32a4e0fab6e4e6c4a32d5e7e3fe26abb271
1
2
3
4
5
6
7
8
9
10
11
12
13
import { isDevMode } from '/@/utils/env';
 
// 缓存默认过期时间
export const DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7;
 
// 开启缓存加密后,加密密钥。采用aes加密
export const cacheCipher = {
  key: '_11111000001111@',
  iv: '@11111000001111_',
};
 
// 是否加密缓存,默认生产环境加密
export const enableStorageEncryption = !isDevMode();