|
| 1 | +import { defineConfig } from "vitepress"; |
| 2 | + |
| 3 | +export default defineConfig({ |
| 4 | + title: "CFDesktop", |
| 5 | + description: "A Qt-based Material Design 3 desktop framework for embedded devices.", |
| 6 | + base: "/CFDesktop/", |
| 7 | + cleanUrls: true, |
| 8 | + lastUpdated: true, |
| 9 | + ignoreDeadLinks: true, |
| 10 | + srcExclude: ["api/**"], |
| 11 | + markdown: { |
| 12 | + html: false |
| 13 | + }, |
| 14 | + themeConfig: { |
| 15 | + nav: [ |
| 16 | + { text: "Start Here", link: "/" }, |
| 17 | + { text: "Development", link: "/development/" }, |
| 18 | + { text: "Architecture", link: "/design_stage/system_architecture_overview" }, |
| 19 | + { text: "Desktop Roadmap", link: "/todo/desktop/" }, |
| 20 | + { text: "HandBook", link: "/HandBook/" } |
| 21 | + ], |
| 22 | + sidebar: [ |
| 23 | + { |
| 24 | + text: "Start Here", |
| 25 | + items: [ |
| 26 | + { text: "Overview", link: "/" }, |
| 27 | + { text: "Current TODO", link: "/todo/" } |
| 28 | + ] |
| 29 | + }, |
| 30 | + { |
| 31 | + text: "Development", |
| 32 | + items: [ |
| 33 | + { text: "Guide", link: "/development/" }, |
| 34 | + { text: "Prerequisites", link: "/development/01_prerequisites" }, |
| 35 | + { text: "Quick Start", link: "/development/02_quick_start" }, |
| 36 | + { text: "Build System", link: "/development/03_build_system" }, |
| 37 | + { text: "CI", link: "/ci/" } |
| 38 | + ] |
| 39 | + }, |
| 40 | + { |
| 41 | + text: "Architecture", |
| 42 | + items: [ |
| 43 | + { text: "System Overview", link: "/design_stage/system_architecture_overview" }, |
| 44 | + { text: "Display Backend", link: "/design_stage/multi_display_backend_architecture" }, |
| 45 | + { text: "Desktop", link: "/desktop/" } |
| 46 | + ] |
| 47 | + }, |
| 48 | + { |
| 49 | + text: "Roadmap", |
| 50 | + items: [ |
| 51 | + { text: "Desktop Overview", link: "/todo/desktop/" }, |
| 52 | + { text: "Milestones", link: "/todo/desktop/milestone_00_overview" }, |
| 53 | + { text: "Done", link: "/todo/done/" } |
| 54 | + ] |
| 55 | + }, |
| 56 | + { |
| 57 | + text: "HandBook", |
| 58 | + items: [ |
| 59 | + { text: "HandBook", link: "/HandBook/" }, |
| 60 | + { text: "Base", link: "/HandBook/base/" }, |
| 61 | + { text: "UI", link: "/HandBook/ui/" }, |
| 62 | + { text: "Desktop", link: "/HandBook/desktop/" } |
| 63 | + ] |
| 64 | + } |
| 65 | + ], |
| 66 | + socialLinks: [ |
| 67 | + { icon: "github", link: "https://github.com/Awesome-Embedded-Learning-Studio/CFDesktop" } |
| 68 | + ], |
| 69 | + search: { |
| 70 | + provider: "local" |
| 71 | + } |
| 72 | + } |
| 73 | +}); |
0 commit comments