jellyfin.org/sidebars.ts

25 lines
701 B
TypeScript
Raw Permalink Normal View History

import { SidebarConfig } from '@docusaurus/plugin-content-docs/src/sidebars/types';
2021-05-06 07:16:19 +00:00
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
const sidebars: SidebarConfig = {
2021-05-06 07:16:19 +00:00
// By default, Docusaurus generates a sidebar from the docs folder structure
2022-08-18 21:00:06 +00:00
docs: [
2023-11-27 17:56:57 +00:00
// "docs/general" pages
2022-08-18 21:00:06 +00:00
'index',
{ type: 'autogenerated', dirName: 'general' },
{ type: 'link', label: 'API Documentation', href: 'https://api.jellyfin.org' }
]
2021-05-06 07:16:19 +00:00
};
export default sidebars;