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.
16 lines
421 B
16 lines
421 B
import { defineConfig } from 'vitepress'
|
|
import { shared } from './shared'
|
|
import { en } from './en'
|
|
import { zh } from './zh'
|
|
import { pt } from './pt'
|
|
|
|
export default defineConfig({
|
|
...shared,
|
|
locales: {
|
|
root: { label: 'English', ...en },
|
|
zh: { label: '简体中文', ...zh },
|
|
pt: { label: 'Português', ...pt },
|
|
ko: { label: '한국어', lang: 'ko-KR', link: 'https://vitepress.vuejs.kr/' }
|
|
}
|
|
})
|