mirror of
https://github.com/snowykami/mbcp.git
synced 2024-11-22 14:17:38 +08:00
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import {defineConfig} from 'vitepress'
|
|
import {ThemeConfig} from "./utils";
|
|
|
|
export const ja = defineConfig({
|
|
lang: "ja-JP",
|
|
title: "MBCP ドキュメント",
|
|
description: "MBCP ライブラリ ドキュメント",
|
|
themeConfig: {
|
|
nav: [
|
|
{text: 'スタート', link: '/ja/guide/'},
|
|
{text: 'リファレンス', link: '/ja/refer'},
|
|
{text: 'APIリファレンス', link: '/ja/api/'},
|
|
{text: 'インスタンス', link: '/ja/demo/'},
|
|
],
|
|
docFooter: {
|
|
prev: '前のページ',
|
|
next: '次のページ'
|
|
},
|
|
editLink: ThemeConfig.getEditLink(
|
|
'このページをGitHubで編集する',
|
|
),
|
|
footer: {
|
|
message: '<a href="https://vitepress.dev/">VitePress</a> で構築されたドキュメント | <a href="https://github.com/LiteyukiStudio/litedoc">litedoc</a> によって生成されたAPIリファレンス',
|
|
copyright: 'Copyright (C) 2020-2024 SnowyKami. All Rights Reserved'
|
|
},
|
|
outline: {
|
|
label: "このページについて",
|
|
level: [2, 6]
|
|
}
|
|
},
|
|
}) |