2024-08-28 22:07:43 +08:00
|
|
|
import {defineConfig} from 'vitepress'
|
2024-08-31 06:06:32 +08:00
|
|
|
import {ThemeConfig} from "./utils";
|
2024-08-28 22:07:43 +08:00
|
|
|
|
|
|
|
export const ja = defineConfig({
|
|
|
|
lang: "ja-JP",
|
2024-08-31 06:06:32 +08:00
|
|
|
title: "MBCP ドキュメント",
|
|
|
|
description: "MBCP ライブラリ ドキュメント",
|
2024-08-28 22:07:43 +08:00
|
|
|
themeConfig: {
|
|
|
|
nav: [
|
2024-08-29 19:00:01 +08:00
|
|
|
{text: 'スタート', link: '/ja/guide/'},
|
2024-08-30 17:56:01 +08:00
|
|
|
{text: 'リファレンス', link: '/ja/refer'},
|
2024-08-31 06:06:32 +08:00
|
|
|
{text: 'APIリファレンス', link: '/ja/api/'},
|
2024-08-29 19:00:01 +08:00
|
|
|
{text: 'インスタンス', link: '/ja/demo/'},
|
2024-08-28 22:07:43 +08:00
|
|
|
],
|
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> で構築されたドキュメント | <a href="https://github.com/LiteyukiStudio/litedoc">litedoc</a> によって生成されたAPIリファレンス',
|
2024-08-31 07:40:03 +08:00
|
|
|
copyright: ThemeConfig.copyright
|
2024-08-30 15:09:17 +08:00
|
|
|
},
|
2024-08-31 07:54:41 +08:00
|
|
|
outline: ThemeConfig.getOutLine("ページの内容"),
|
2024-08-28 22:07:43 +08:00
|
|
|
},
|
|
|
|
})
|