dify-components
Version:
This is a modern component library template based on Turborepo+Vue 3.5+TypeScript.
14 lines (12 loc) • 346 B
text/typescript
import { defineConfig } from 'vitepress';
import { shared } from './config/shared';
import { en } from './config/en';
import { zh } from './config/zh';
// https://vitepress.dev/reference/site-config
export default defineConfig({
...shared,
locales: {
root: { label: '简体中文', ...zh },
en: { label: 'English', ...en },
},
});