forked from ReChronoRain/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzh_TW.ts
31 lines (26 loc) · 828 Bytes
/
zh_TW.ts
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
import { defineConfig } from 'vitepress'
export default defineConfig({
lang: 'zh-TW',
description: '讓 HyperOS 再次偉大!',
themeConfig: {
nav: nav(),
lastUpdatedText: "最後更新",
darkModeSwitchLabel: '深色模式',
returnToTopLabel: '回到頂部',
outline: {
label: '目錄'
},
editLink: {
pattern: 'https://github.com/saraSakuHj/website/edit/main/:path',
text: '在 GitHub 中編輯此頁'
}
}
})
function nav() {
return [
{ text: '下載', link: '/zh_TW/Download.html' },
{ text: '贊助', link: 'https://www.sevtinge.cc/t/donation.html' },
{ text: '感謝名單', link: '/zh_TW/Thank.html' },
{ text: '用戶交流', link: '/zh_TW/Support.html' }
]
}