mirror of
https://github.com/toss/es-toolkit.git
synced 2025-01-08 17:31:36 +03:00
cf65b2c601
* chore: add prettierrc * chore: apply format with prettier config * chore: eslint error fix
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
import { defineConfig } from 'vitepress';
|
|
import { en } from './en.mts';
|
|
import { ko } from './ko.mts';
|
|
import { shared } from './shared.mts';
|
|
|
|
export default defineConfig({
|
|
...shared,
|
|
locales: {
|
|
root: { label: 'English', ...en },
|
|
ko: { label: '한국어', ...ko },
|
|
},
|
|
});
|