8a15667196
This adds a new app.support top level config that can be used to configure various support links and other information. This can later be extended for plugins to append their own specific support items.
explore
Welcome to the explore plugin! This plugin helps to visualize the domains and tools in your ecosystem.
Getting started
To install the plugin, include the following import your plugins.ts:
export { explorePlugin } from '@backstage/plugin-explore';
Register the route in App.tsx:
import { ExplorePage } from '@backstage/plugin-explore';
...
<Route path="/explore" element={<ExplorePage />} />
Add a link to the sidebar in Root.tsx:
import LayersIcon from '@material-ui/icons/Layers';
...
<SidebarItem icon={LayersIcon} to="explore" text="Explore" />