-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfreeWind.config.ts
More file actions
109 lines (107 loc) · 2.67 KB
/
Copy pathfreeWind.config.ts
File metadata and controls
109 lines (107 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import { defineConfig } from '@free-wind/core'
const number = '津ICP备2023004480号'
const link = `<a href="https://beian.miit.gov.cn/" target="_blank">${number}</a>`
export default defineConfig({
themeConfig: {
navbar: {
logo: {
alt: 'ALemonX Logo',
src: 'me.png'
},
title: 'ALemonX',
items: [
{
to: '/docs/intro',
label: '文档',
position: 'left'
},
{
to: 'blog',
label: '更新',
position: 'left'
},
{
position: 'right',
label: '下载',
href: 'https://github.com/lemonade-lab/alemonx/releases'
},
{
position: 'right',
label: '源码',
href: 'https://github.com/lemonade-lab/alemonx'
},
{
position: 'right',
label: '框架',
href: 'https://github.com/lemonade-lab/alemonjs'
},
{
position: 'right',
label: '编辑',
href: 'https://github.com/lemonade-lab/alemonjs.dev'
}
]
},
footer: {
style: 'dark',
links: [
{
title: '了解',
items: [
{
label: '如何安装',
to: '/docs/alemonx/getting-started/install'
},
{
label: 'X系统插件',
to: '/docs/apps-x'
},
{
label: '加入社区',
to: 'https://qm.qq.com/q/AIiSecyPlK'
}
]
},
{
title: '相关工具',
items: [
{
label: '机器人框架',
to: '/docs/alemonjsDocs/getting-started/install'
},
{
label: '机器人插件',
to: '/docs/apps'
},
{
label: '机器人模块',
to: '/docs/apps-module'
},
{
label: '机器人平台',
to: '/docs/environment'
}
]
},
{
title: '下载与更新',
items: [
{
label: 'X版本更新',
to: '/blog'
},
{
label: 'X发布列表',
href: 'https://github.com/lemonade-lab/alemonx/releases'
},
{
label: 'X社区讨论',
href: 'https://github.com/lemonade-lab/alemonx/discussions'
}
]
}
],
copyright: `Released under the MIT License. <br/> Copyright © 2024-present Lemonade-Lab & ALemonX Contributors </span> <br> ${link}`
}
}
})