mirror of
https://github.com/LukeHagar/plex-docs.git
synced 2025-12-06 12:37:45 +00:00
22 lines
512 B
JavaScript
22 lines
512 B
JavaScript
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
plexSidebar: [
|
|
{
|
|
type: "category",
|
|
label: "Plex API",
|
|
collapsible: false,
|
|
collapsed: false,
|
|
link: {
|
|
type: "generated-index",
|
|
title: "Plex API",
|
|
description:
|
|
"This documentation is generated from an OpenAPI Specificiation File",
|
|
slug: "/plex",
|
|
},
|
|
items: require("./docs/plex/sidebar.js"),
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|