mirror of
https://github.com/snowykami/mbcp.git
synced 2024-11-22 22:27:38 +08:00
62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
import {defineConfig} from 'vitepress'
|
|
import {generateSidebar} from 'vitepress-sidebar';
|
|
import {zh} from "./zh";
|
|
import {en} from "./en";
|
|
import {ja} from "./ja";
|
|
import {zht} from "./zht";
|
|
|
|
let defaultLocale = 'zh';
|
|
const commonSidebarOptions = {
|
|
collapsed: true,
|
|
convertSameNameSubFileToGroupIndexPage: true,
|
|
useFolderTitleFromIndexFile: true,
|
|
useFolderLinkFromIndexFile: true,
|
|
useTitleFromFrontmatter: true,
|
|
useTitleFromFileHeading: true,
|
|
includeFolderIndexFile: true,
|
|
}
|
|
export const common = defineConfig({
|
|
title: "MBCP docs",
|
|
description: "MBCP library docs",
|
|
markdown: {
|
|
math: true
|
|
},
|
|
vite: {
|
|
plugins: [],
|
|
},
|
|
rewrites: {
|
|
[`${defaultLocale}/:rest*`]: ":rest*",
|
|
},
|
|
themeConfig: {
|
|
sidebar: generateSidebar(
|
|
[
|
|
...[defaultLocale, 'en', 'ja', 'zht'].map((locale) => {
|
|
if (locale === defaultLocale) {
|
|
return {
|
|
basePath: '/api/',
|
|
scanStartPath: `${locale}/api`,
|
|
resolvePath: '/api/',
|
|
...commonSidebarOptions
|
|
}
|
|
} else {
|
|
return {
|
|
basePath: `/${locale}/api/`,
|
|
scanStartPath: `${locale}/api`,
|
|
resolvePath: `/${locale}/api/`,
|
|
...commonSidebarOptions
|
|
}
|
|
}
|
|
})
|
|
]
|
|
),
|
|
socialLinks: [
|
|
{icon: 'github', link: 'https://github.com/snowykami/mbcp'}
|
|
],
|
|
},
|
|
locales: {
|
|
root: {label: "简体中文", ...zh},
|
|
en: {label: "English", ...en},
|
|
ja: {label: "日本語", ...ja},
|
|
zht: {label: "繁體中文", ...zht},
|
|
},
|
|
}) |