|
1 |
| -import type {SidebarsConfig} from '@docusaurus/plugin-content-docs'; |
| 1 | +import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'; |
2 | 2 |
|
3 | 3 |
|
4 | 4 | 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: [ |
8 | 8 | {
|
9 | 9 | type: 'category',
|
10 | 10 | label: 'Getting Started',
|
11 | 11 | 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 | + }], |
17 | 25 | },
|
18 | 26 | ]
|
19 | 27 | };
|
|
0 commit comments