mirror of
https://github.com/tiennm99/litellm.git
synced 2026-06-17 22:48:35 +00:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
releaseNotesSidebar: [
|
|
{ type: 'doc', id: 'index', label: 'Release Notes' },
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '.',
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|