mirror of
https://github.com/snowykami/mbcp.git
synced 2024-11-22 22:27:38 +08:00
15 lines
279 B
TypeScript
15 lines
279 B
TypeScript
import {defineConfig} from "vitepress";
|
|
|
|
import {common} from './common'
|
|
import {en} from './en'
|
|
import {zh} from './zh'
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
...common,
|
|
locales:{
|
|
root: { label: "简体中文", ...zh },
|
|
en: { label: "English", ...en }
|
|
}
|
|
}) |