Skip to main content

Application Sidebar

The application sidebar is the sidebar that is rendered on every page in EventCatalog.

Example

Show/hide items in the application sidebar

You can show or hide items in the application sidebar by using the sidebar property in your eventcatalog.config.js file.

By default, all items is the sidebar are shown.

eventcatalog.config.js
// rest of the config
sidebar: [
{
id: '/chat',
// This will hide the AI chat feature
visible: false,
},
{
id: '/visualiser',
// This will hide the visualiser
visible: false,
},
]

Options for the sidebar property:

  • id: The id of the item to hide.
  • visible: Whether to show or hide the item.
IDDescription
/The home page icon
/docsThe documentation page icon
/visualiserThe visualiser page icon
/chatThe AI chat page icon
/discoverThe discover page icon
/directoryThe users directory page icon