export default { REACT_APP_ENV: 'prod', REACT_APP_ID: 'perms-system-web', REACT_APP_NAME: 'Perms System PMP', REACT_APP_VERSION: '1.0.0', STORAGE_NAME_SPACE: 'perms-system-web-', ENABLE_REQUEST_ENCRYPTION: false, REQUEST_ENCRYPTION_KEY: 'ef7d8c60c013cf85bf1a079d2d50af46', // md5(sha256(${REACT_APP_ID}-${REACT_APP_VERSION})) ENABLE_STORAGE_ENCRYPTION: true, STORAGE_ENCRYPTION_KEY: '31396fcaaf54dcc8', // md5(sha1(${REACT_APP_ID}-${REACT_APP_VERSION})).slice(0, 16) // 管理后台登录密钥,必须与服务端 etc/perm-api.yaml 中 Auth.ManagementKey 一致,各环境单独配置 REACT_APP_MANAGEMENT_KEY: '', } as NodeJS.ProcessEnv;