-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
14 lines (12 loc) · 850 Bytes
/
Copy pathsidebars.ts
File metadata and controls
14 lines (12 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
'index',
{type: 'category', label: '总览与架构', items: ['product-and-principles', 'monorepo-and-boundaries', 'runtime-topology-and-startup']},
{type: 'category', label: '数据与同步', items: ['domain-model-and-storage', 'local-store-and-sync', 'network-api-and-ssr']},
{type: 'category', label: '跨端运行时', items: ['desktop-electron-shell', 'mobile-react-native-shell', 'content-pipeline-and-reader']},
{type: 'category', label: '能力与工程化', items: ['ai-and-automation', 'auth-security-and-settings', 'release-ota-and-ci', 'engineering-takeaways']},
{type: 'category', label: '附录', items: ['appendix/source-map', 'appendix/glossary']},
],
};
export default sidebars;