mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
14 lines
468 B
TypeScript
14 lines
468 B
TypeScript
import { defineConfig } from 'vitepress'
|
|
import { sharedConfig } from './shared'
|
|
import { enConfig } from "./en"
|
|
import { zhCNConfig } from "./zh_CN"
|
|
import { zhTWConfig } from "./zh_TW";
|
|
|
|
export default defineConfig({
|
|
...sharedConfig,
|
|
locales: {
|
|
root: { label: 'English', lang: 'en', ...enConfig },
|
|
zh_CN: { label: '简体中文', lang: 'zh-CN', ...zhCNConfig },
|
|
zh_TW: { label: '繁體中文', lang: 'zh-TW', ...zhTWConfig }
|
|
}
|
|
})
|