Skip to content

Commit 1be2691

Browse files
committed
fixing sidebar menu structure
1 parent 130d27c commit 1be2691

File tree

1 file changed

+17
-9
lines changed

1 file changed

+17
-9
lines changed

sidebars.ts

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
1-
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
1+
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
22

33

44
const sidebars: SidebarsConfig = {
5-
troubleshootingSidebar: [{type: 'autogenerated', dirName: 'troubleshooting'}], // Adjust `dirName` as needed
6-
changelogSidebar: [{type: 'autogenerated', dirName: 'changelog'}], // Adjust `dirName` as needed
7-
docsSidebar : [
5+
troubleshootingSidebar: [{ type: 'autogenerated', dirName: 'troubleshooting' }], // Adjust `dirName` as needed
6+
changelogSidebar: [{ type: 'autogenerated', dirName: 'changelog' }], // Adjust `dirName` as needed
7+
docsSidebar: [
88
{
99
type: 'category',
1010
label: 'Getting Started',
1111
collapsed: false,
12-
items: ['index', {type: 'category', label: "Before You Begin", items: [
13-
'intro/before-you-begin/setting-up-flutterflow', 'intro/before-you-begin/app-architecture'
14-
]}, {type: 'category', label: "Understanding The FlutterFlow UI", items: [
15-
'understanding-the-flutterflow-ui/projects/what-is-a-project'
16-
]}],
12+
items: ['index', {
13+
type: 'category', label: "Before You Begin", items: [
14+
'intro/before-you-begin/setting-up-flutterflow', 'intro/before-you-begin/app-architecture'
15+
]
16+
}, {
17+
type: 'category', label: "Understanding The FlutterFlow UI", items: [
18+
{
19+
type: 'category', label: "Projects", items: [
20+
'understanding-the-flutterflow-ui/projects/what-is-a-project'
21+
]
22+
},
23+
]
24+
}],
1725
},
1826
]
1927
};

0 commit comments

Comments
 (0)