Skip to content

Commit

Permalink
[docs]: Fixed side navigation bug I introduced by my earlier change
Browse files Browse the repository at this point in the history
  • Loading branch information
gked committed Jan 7, 2025
1 parent 949934c commit 9ab1f50
Showing 1 changed file with 42 additions and 18 deletions.
60 changes: 42 additions & 18 deletions docs/.vuepress/configs/sidebar/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,44 +2,68 @@ import type { SidebarOptions } from '@vuepress/theme-default'

export const sidebarEn: SidebarOptions = {
'/guide/': [
// ... existing guide config stays the same
{
text: 'Users',
children: [
'/guide/getting-started.md',
'/guide/monetization/',
'/guide/easy-node/',
'/guide/full-node/',
],
},
],

'/dev/': [
// ... existing dev config stays the same
{
text: 'Developers',
children: [
'/dev/introduction.md',
'/dev/CONTRIBUTING.md',
],
},
],
'/dev/node': [
// ... existing node config stays the same
'/dev/node/': [
{
text: 'Blockchain Node',
children: [
'/dev/node/get-started.md',
'/dev/node/source.md',
'/dev/node/building.md',
'/dev/node/usage.md',
'/dev/node/rpc.md',
],
},
],
'/dev/api': [
'/dev/api/': [
{
text: 'Proxy & API',
children: [
'todo.md',
'introduction.md',
'get-started.md',
'rpc.md',
'miniapps.md',
'/dev/api/todo.md',
'/dev/api/introduction.md',
'/dev/api/get-started.md',
'/dev/api/rpc.md',
'/dev/api/miniapps.md',
],
},
],
'/dev/apps/miniapps/': [
{
text: 'Mini Apps',
children: [
'get-started.md',
'permissions.md',
'sdk.md',
'/dev/apps/miniapps/get-started.md',
'/dev/apps/miniapps/permissions.md',
'/dev/apps/miniapps/sdk.md',
],
},
],
'/dev/apps': [
'/dev/apps/': [
{
text: 'Applications',
children: [
'introduction.md',
'get-started.md',
'mini-apps.md',
'barteron-app.md',
'/dev/apps/introduction.md',
'/dev/apps/get-started.md',
'/dev/apps/mini-apps.md',
'/dev/apps/barteron-app.md',
],
},
],
Expand Down

0 comments on commit 9ab1f50

Please sign in to comment.