mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 05:17:24 +08:00
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import {defineConfig} from 'vitepress'
|
|
import {ThemeConfig} from "./utils";
|
|
|
|
export const zh = defineConfig({
|
|
lang: "zh-Hans",
|
|
title: "轻雪机器人",
|
|
description: "一个综合性的机器人应用及管理框架",
|
|
themeConfig: {
|
|
nav: [
|
|
{text: '部署', link: '/deploy/install'},
|
|
{text: '使用', link: '/usage/basic'},
|
|
{text: '扩展', link: '/store/resource'},
|
|
{text: '开发', link: '/dev/guide'},
|
|
],
|
|
docFooter: {
|
|
prev: '上一页',
|
|
next: '下一页'
|
|
},
|
|
editLink: ThemeConfig.getEditLink(
|
|
'在 GitHub 上编辑此页',
|
|
),
|
|
footer: {
|
|
message: '文档由 <a href="https://vitepress.dev/">VitePress</a> 构建 | API引用由 <a href="https://github.com/LiteyukiStudio/litedoc">litedoc</a> 生成',
|
|
copyright: ThemeConfig.copyright
|
|
},
|
|
outline: ThemeConfig.getOutLine("页面内容"),
|
|
|
|
langMenuLabel: '语言',
|
|
returnToTopLabel: '返回顶部',
|
|
sidebarMenuLabel: '菜单',
|
|
darkModeSwitchLabel: '主题',
|
|
lightModeSwitchTitle: '轻色模式',
|
|
darkModeSwitchTitle: '深色模式',
|
|
},
|
|
}) |