Application Sidebar
The application sidebar is the sidebar that is rendered on every page in EventCatalog.
Show/hide items in the application sidebar
Added in
eventcatalog@2.30.1
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.
ID | Description |
---|---|
/ | The home page icon |
/docs | The documentation page icon |
/visualiser | The visualiser page icon |
/chat | The AI chat page icon |
/discover | The discover page icon |
/directory | The users directory page icon |