Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions doc/sidebars.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Sidebar configuration for Hasty Server documentation
*
*
* This file defines the navigation structure for the documentation site.
* The sidebar is organized into logical sections for easy navigation.
*/
Expand All @@ -21,10 +21,10 @@ const sidebars = {
'getting-started/quick-start',
'getting-started/installation',
'getting-started/hello-world',
'getting-started/configuration',
],
'getting-started/configuration'
]
},

// Guides section
{
type: 'category',
Expand All @@ -41,10 +41,10 @@ const sidebars = {
'guides/testing',
'guides/deployment',
'guides/performance',
'guides/security',
],
'guides/security'
]
},

// API Reference section
{
type: 'category',
Expand All @@ -56,10 +56,10 @@ const sidebars = {
'api/request',
'api/response',
'api/router',
'api/middleware',
],
'api/middleware'
]
},

// Examples section
{
type: 'category',
Expand All @@ -71,10 +71,10 @@ const sidebars = {
'examples/authentication',
'examples/file-uploads',
'examples/websockets',
'examples/real-time-app',
],
'examples/real-time-app'
]
},

// Advanced Topics
{
type: 'category',
Expand All @@ -86,10 +86,10 @@ const sidebars = {
'advanced/streaming',
'advanced/compression',
'advanced/clustering',
'advanced/plugins',
],
'advanced/plugins'
]
},

// Community & Support
{
type: 'category',
Expand All @@ -100,10 +100,10 @@ const sidebars = {
'community/contributing',
'community/code-of-conduct',
'community/faq',
'community/showcase',
],
'community/showcase'
]
},

// Troubleshooting
{
type: 'category',
Expand All @@ -114,19 +114,19 @@ const sidebars = {
'troubleshooting/common-issues',
'troubleshooting/debugging',
'troubleshooting/performance-issues',
'troubleshooting/security-issues',
],
},
'troubleshooting/security-issues'
]
}
],

// API Reference sidebar (for API pages)
apiSidebar: [
'api/application',
'api/request',
'api/response',
'api/router',
'api/middleware',
],
};
'api/middleware'
]
}

export default sidebars;
export default sidebars
Loading