16 lines
456 B
JavaScript
16 lines
456 B
JavaScript
// @ts-check
|
|
|
|
/**
|
|
* Sidebar is fully auto-generated from the docs/ folder structure, driven by
|
|
* each plugin's _category_.json for ordering and labels — add a new .md file
|
|
* anywhere under docs/ and it appears in the sidebar automatically, no
|
|
* manual entry needed here.
|
|
*
|
|
* @type {import('@docusaurus/plugin-content-docs').SidebarsConfig}
|
|
*/
|
|
const sidebars = {
|
|
docsSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
};
|
|
|
|
export default sidebars;
|