We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca09ef commit 824b0f8Copy full SHA for 824b0f8
frontend/src/components/App/Home/config.ts
@@ -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