mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
37 lines
694 B
JavaScript
37 lines
694 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
docsSidebar: [
|
|
{
|
|
type: 'html',
|
|
value: 'Getting Started',
|
|
className: 'sidebar-title',
|
|
},
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '01-getting-started',
|
|
},
|
|
{
|
|
type: 'html',
|
|
value: 'Advanced Guides',
|
|
className: 'sidebar-title',
|
|
},
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '02-advanced-guides',
|
|
},
|
|
{
|
|
type: 'html',
|
|
value: 'API Documentation',
|
|
className: 'sidebar-title',
|
|
},
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: '03-api-documentation',
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|