mbcp/docs/.vitepress/config/zh.ts

17 lines
646 B
TypeScript
Raw Normal View History

2024-08-28 11:56:19 +08:00
import {defineConfig} from 'vitepress'
2024-08-28 11:38:46 +08:00
export const zh = defineConfig({
lang: "zh-Hans",
description: "一个用于Minecraft粒子计算和生成的库",
themeConfig: {
2024-08-28 12:02:30 +08:00
nav: [
{text: '快速开始', link: '/guide/'},
2024-08-28 12:02:30 +08:00
{text: 'API文档', link: '/api/'},
{text: '实例', link: '/demo/'},
],
2024-08-29 19:00:01 +08:00
footer: {
message: '文档由 <a href="https://vitepress.dev/">VitePress</a> 构建 | API引用由 <a href="https://github.com/LiteyukiStudio/litedoc">litedoc</a> 生成',
copyright: 'Copyright (C) 2020-2024 SnowyKami. All Rights Reserved'
}
2024-08-28 11:38:46 +08:00
},
})