mirror of
https://github.com/LukeHagar/plex-docs.git
synced 2025-12-06 12:37:45 +00:00
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
plexSidebar: [
|
|
{
|
|
type: "category",
|
|
label: "Plex Media Server API",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
link: {
|
|
type: "generated-index",
|
|
title: "Plex Media Server API",
|
|
description:
|
|
"This documentation is generated from an OpenAPI Specification File",
|
|
slug: "/plex",
|
|
},
|
|
items: require("./docs/plex/sidebar.js"),
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Plex TV API",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
link: {
|
|
type: "generated-index",
|
|
title: "Plex TV API",
|
|
description:
|
|
"This documentation is generated from an OpenAPI Specification File",
|
|
slug: "/plex-tv",
|
|
},
|
|
items: require("./docs/plex-tv/sidebar.js"),
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Legacy Markdown",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
link: {
|
|
type: "generated-index",
|
|
title: "Legacy Documentation",
|
|
description:
|
|
"This documentation is the source markdown data used to create the open API Document",
|
|
slug: "/legacy",
|
|
},
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "legacy/plex", // generate sidebar
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|