|
1 | 1 | export default { |
2 | 2 | base: process.env.NODE_ENV === 'production' ? '/ued-ui/' : '/', |
| 3 | + head: [ |
| 4 | + [ |
| 5 | + 'link', |
| 6 | + { |
| 7 | + rel: 'icon', |
| 8 | + href: |
| 9 | + (process.env.NODE_ENV === 'production' ? '/ued-ui/' : '/') + |
| 10 | + 'favicon.svg', |
| 11 | + }, |
| 12 | + ], |
| 13 | + ], |
3 | 14 | themeConfig: { |
4 | 15 | siteTitle: 'Ued-Plus', |
| 16 | + outline: { |
| 17 | + level: 'deep', |
| 18 | + }, |
5 | 19 | nav: [ |
6 | | - { text: '指南', link: '/guide/installation/' }, |
| 20 | + { text: '更新日志', link: '/changelogs/mono/' }, |
| 21 | + { text: '指南', link: '/guide/quickstart/' }, |
7 | 22 | { text: '组件', link: '/components/button/' }, |
8 | 23 | ], |
9 | 24 | socialLinks: [ |
10 | 25 | { icon: 'github', link: 'https://github.com/bin-K/ued-plus' }, |
11 | 26 | ], |
12 | 27 | sidebar: { |
13 | | - '/guide/': [ |
| 28 | + '/changelogs': [ |
14 | 29 | { |
15 | | - text: '基础', |
| 30 | + text: '基础日志', |
16 | 31 | items: [ |
17 | 32 | { |
18 | | - text: '安装', |
19 | | - link: '/guide/installation/', |
| 33 | + text: 'Mono', |
| 34 | + link: '/changelogs/mono/', |
| 35 | + }, |
| 36 | + ], |
| 37 | + }, |
| 38 | + { |
| 39 | + text: '基础组件', |
| 40 | + items: [ |
| 41 | + { |
| 42 | + text: 'Button', |
| 43 | + link: '/changelogs/button/', |
| 44 | + }, |
| 45 | + { |
| 46 | + text: 'Icon', |
| 47 | + link: '/changelogs/icon/', |
| 48 | + }, |
| 49 | + { |
| 50 | + text: 'Text', |
| 51 | + link: '/changelogs/text/', |
| 52 | + }, |
| 53 | + { |
| 54 | + text: 'Link', |
| 55 | + link: '/changelogs/link/', |
| 56 | + }, |
| 57 | + { |
| 58 | + text: 'Container', |
| 59 | + link: '/changelogs/container/', |
| 60 | + }, |
| 61 | + { |
| 62 | + text: 'Layout', |
| 63 | + link: '/changelogs/layout/', |
20 | 64 | }, |
| 65 | + { |
| 66 | + text: 'Scrollbar', |
| 67 | + link: '/changelogs/scrollbar/', |
| 68 | + }, |
| 69 | + ], |
| 70 | + }, |
| 71 | + { |
| 72 | + text: '表单组件日志', |
| 73 | + items: [ |
| 74 | + { |
| 75 | + text: 'Radio', |
| 76 | + link: '/changelogs/radio/', |
| 77 | + }, |
| 78 | + ], |
| 79 | + }, |
| 80 | + { |
| 81 | + text: '反馈组件日志', |
| 82 | + items: [ |
| 83 | + { |
| 84 | + text: 'Dialog', |
| 85 | + link: '/changelogs/dialog/', |
| 86 | + }, |
| 87 | + ], |
| 88 | + }, |
| 89 | + ], |
| 90 | + '/guide/': [ |
| 91 | + { |
| 92 | + text: '基础', |
| 93 | + items: [ |
21 | 94 | { |
22 | 95 | text: '快速开始', |
23 | 96 | link: '/guide/quickstart/', |
24 | 97 | }, |
| 98 | + { |
| 99 | + text: '安装', |
| 100 | + link: '/guide/installation/', |
| 101 | + }, |
25 | 102 | ], |
26 | 103 | }, |
27 | 104 | ], |
|
0 commit comments