If you use classic template when creating the doc, you'll get a sidebar like this:
(Docusaurus v2)
How can I keep using this preset and have a sidebar always expanded like this:
(ComponentKit)
Sidebar collapsing is a theme configuration attribute. You can modify this:
// docusaurus.config.js
module.exports = {
// ...
themeConfig: {
sidebarCollapsible: false,
// ...
},
};