From d3b867fae2572a2d97a034469433b5f3fb91ff94 Mon Sep 17 00:00:00 2001 From: Junseong Park Date: Wed, 1 May 2024 18:28:31 +0900 Subject: i18n(ko-KR): update `configuration.mdx` (#1810) Co-authored-by: HiDeoo <494699+HiDeoo@users.noreply.github.com>--- docs/src/content/docs/ko/reference/configuration.mdx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/src/content/docs/ko/reference/configuration.mdx b/docs/src/content/docs/ko/reference/configuration.mdx index dccbd689..f8da089f 100644 --- a/docs/src/content/docs/ko/reference/configuration.mdx +++ b/docs/src/content/docs/ko/reference/configuration.mdx @@ -25,10 +25,22 @@ export default defineConfig({ ### `title` (필수) -**타입:** `string` +**타입:** `string | Record` 웹사이트의 제목을 설정합니다. 메타데이터 및 브라우저 탭 제목에 사용됩니다. +값은 문자열일 수도 있고, 다국어 사이트의 경우 각기 다른 로케일에 대한 값이 포함된 객체일 수도 있습니다. +객체 형식을 사용할 때 키는 BCP-47 태그(예: `en`, `ar` 또는 `zh-CN`)여야 합니다. + +```ts +starlight({ + title: { + en: 'My delightful docs site', + de: 'Meine bezaubernde Dokumentationsseite', + }, +}); +``` + ### `description` **타입:** `string` -- cgit