es-toolkit/docs/.vitepress/config.mts
raon0211 7ca9ffcd72
Some checks are pending
CI / codecov (push) Waiting to run
Release / release (push) Waiting to run
docs: Revert adding Sandpack components
2024-08-09 11:09:25 +09:00

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 },
},
});