mirror of
https://github.com/snowykami/mbcp.git
synced 2024-11-22 22:27:38 +08:00
14 lines
395 B
TypeScript
14 lines
395 B
TypeScript
|
import {defineConfig} from 'vitepress'
|
||
|
|
||
|
export const ja = defineConfig({
|
||
|
|
||
|
lang: "ja-JP",
|
||
|
description: "Minecraftのパーティクル生成用のライブラリ",
|
||
|
themeConfig: {
|
||
|
nav: [
|
||
|
{text: 'スタート', link: '/guide'},
|
||
|
{text: 'APIドキュメント', link: '/api/'},
|
||
|
{text: 'インスタンス', link: '/demo/'},
|
||
|
],
|
||
|
},
|
||
|
})
|