Skip to content

Commit 824b0f8

Browse files
committed
frontend: Home/config: Add for configuring Home
So some experimental features can be more easily disabled/enabled. Signed-off-by: René Dudfield <renedudfield@microsoft.com>
1 parent 4ca09ef commit 824b0f8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/** Allow selecting multiple clusters on home page. */
2+
export const MULTI_HOME_ENABLED = import.meta.env.REACT_APP_MULTI_HOME_ENABLED === 'true' || true;
3+
4+
/** Show recent clusters on the home page */
5+
export const ENABLE_RECENT_CLUSTERS =
6+
import.meta.env.REACT_APP_ENABLE_RECENT_CLUSTERS === 'true' || true;

0 commit comments

Comments
 (0)