mbcp/docs/.vitepress/config/zht.ts

28 lines
964 B
TypeScript
Raw Permalink Normal View History

import {defineConfig} from 'vitepress'
2024-08-31 06:06:32 +08:00
import {ThemeConfig} from "./utils";
export const zht = defineConfig({
lang: "zh-Hant",
2024-08-31 06:06:32 +08:00
title: "MBCP 文檔",
description: "MBCP 粒子計算和生成庫文檔",
themeConfig: {
nav: [
2024-08-29 19:00:01 +08:00
{text: '指引', link: '/zht/guide/'},
2024-08-30 17:56:01 +08:00
{text: '參考', link: '/zht/refer'},
2024-08-31 06:06:32 +08:00
{text: 'API引用', link: '/zht/api/'},
2024-08-29 19:00:01 +08:00
{text: '示範', link: '/zht/demo/'},
],
2024-08-31 06:06:32 +08:00
docFooter: {
prev: '上一頁',
next: '下一頁'
},
editLink: ThemeConfig.getEditLink(
'於 GitHub 上編輯這頁',
),
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> 生成',
2024-08-31 07:40:03 +08:00
copyright: ThemeConfig.copyright
2024-08-30 15:09:17 +08:00
},
2024-08-31 07:40:03 +08:00
outline: ThemeConfig.getOutLine("頁面內容")
},
})