mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-16 13:03:31 +08:00
- security: XSS sanitization with DOMPurify in Markdown/Mermaid/PermissionDialog; path whitelist in filesystem API; fake keys in test/config files - perf: fine-grained Zustand selectors in Sidebar/StatusBar/ContentRouter; 50ms throttle on streaming deltas; React.memo + useMemo in MessageList; useRef for frequent keyboard shortcut state; AbortController 30s timeout - leaks: WS session TTL timers (5-min cleanup on close); batch splice for sdkMessages/stderrLines; folderPath validation in cronScheduler - quality: optimistic update rollback in settingsStore; error state in providerStore/teamStore; i18n for all hardcoded English strings - docs: desktop architecture and features docs updated; VitePress nav fixed Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
384 B
TypeScript
12 lines
384 B
TypeScript
import { isEnvTruthy } from '../utils/envUtils.js'
|
|
|
|
// Lazy read so ENABLE_GROWTHBOOK_DEV from globalSettings.env (applied after
|
|
// module load) is picked up. USER_TYPE is a build-time define so it's safe.
|
|
export function getGrowthBookClientKey(): string {
|
|
return process.env.USER_TYPE === 'ant'
|
|
? isEnvTruthy(process.env.ENABLE_GROWTHBOOK_DEV)
|
|
? ''
|
|
: ''
|
|
: ''
|
|
}
|