mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-24 11:45:26 +03:00
e9ede74362
* Translate Simplified Chinese * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Supplement the omitted * Update docs/.vitepress/shared.mts --------- Co-authored-by: Sojin Park <raon0211@gmail.com>
15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
import { defineConfig } from 'vitepress';
|
|
import { en } from './en.mts';
|
|
import { ko } from './ko.mts';
|
|
import { zh_hans } from './zh_hans.mts';
|
|
import { shared } from './shared.mts';
|
|
|
|
export default defineConfig({
|
|
...shared,
|
|
locales: {
|
|
root: { label: 'English', ...en },
|
|
ko: { label: '한국어', ...ko },
|
|
zh_hans: { label: '简体中文', ...zh_hans },
|
|
},
|
|
});
|