Replies: 5 comments 5 replies
-
This? https://docusaurus.io/docs/sidebar/autogenerated#autogenerated-sidebar-metadata |
Beta Was this translation helpful? Give feedback.
-
@Josh-Cena const sidebars = {
manuals: [{ type: 'autogenerated', dirName: 'manuals' }],
};
module.exports = sidebars and which in docs dir like this └── manuals
├── frontend
│ └── _category_.json
├── go
│ ├── _category_.json
│ ├── test1.md
│ └── test3.md
├── index.md
├── node
│ └── _category_.json
└── php
└── _category_.json content of {
"label": "golang",
"position": 4,
"items": [
{
"type": "link",
"label": "test",
"href": "https://test.com",
"position": 2
}
]
} but it not work,error log output by console ValidationError: "items" is not allowed |
Beta Was this translation helpful? Give feedback.
-
Also need this. Any idea if this is planned soon? It's much more convenient to use the auto-generated sidebar, but external links are also needed. |
Beta Was this translation helpful? Give feedback.
-
@Josh-Cena @slorber Hey guys, I also need this capability, any plans to add it? Thanks |
Beta Was this translation helpful? Give feedback.
-
Is this still not an option? I tried changing the link the _category_json and it's a no-go. |
Beta Was this translation helpful? Give feedback.
-
how to do it?
Beta Was this translation helpful? Give feedback.
All reactions