feat: add feature flag

This commit is contained in:
David Nguyen
2024-02-19 14:31:26 +11:00
parent 791a22cb5f
commit ac6da9ab45
3 changed files with 22 additions and 8 deletions

View File

@ -18,6 +18,7 @@ export const FEATURE_FLAG_POLL_INTERVAL = 30000;
export const LOCAL_FEATURE_FLAGS: Record<string, boolean> = {
app_billing: process.env.NEXT_PUBLIC_FEATURE_BILLING_ENABLED === 'true',
app_teams: true,
app_document_page_view_history_sheet: false,
marketing_header_single_player_mode: false,
} as const;