mirror of
https://github.com/snowykami/mbcp.git
synced 2024-11-22 22:27:38 +08:00
21 lines
525 B
TypeScript
21 lines
525 B
TypeScript
import {defineConfig} from 'vitepress'
|
|
|
|
export const zh = defineConfig({
|
|
lang: "zh-Hans",
|
|
description: "一个用于Minecraft粒子计算和生成的库",
|
|
|
|
themeConfig: {
|
|
nav: [
|
|
{text: '快速开始', link: '/guide'},
|
|
{text: 'API文档', link: '/api/'},
|
|
{text: '实例', link: '/demo/'},
|
|
],
|
|
// sidebar: {
|
|
// '/api/': {
|
|
// base: '/api/',
|
|
// items: [
|
|
// ]
|
|
// }
|
|
// }
|
|
},
|
|
}) |