mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
536 B
21 lines
536 B
import { defineConfig } from 'vitepress'
|
|
import { shared } from './shared'
|
|
import { en } from './en'
|
|
import { zh } from './zh'
|
|
import { pt } from './pt'
|
|
import { ru } from './ru'
|
|
import { es } from './es'
|
|
import { ko } from './ko'
|
|
|
|
export default defineConfig({
|
|
...shared,
|
|
locales: {
|
|
root: { label: 'English', ...en },
|
|
zh: { label: '简体中文', ...zh },
|
|
pt: { label: 'Português', ...pt },
|
|
ru: { label: 'Русский', ...ru },
|
|
es: { label: 'Español', ...es },
|
|
ko: { label: '한국어', ...ko }
|
|
}
|
|
})
|