From 427cc52b48934915284e4f7e12b3a14a8b7aceb8 Mon Sep 17 00:00:00 2001 From: Junseong Park <39112954+jsparkdev@users.noreply.github.com> Date: Wed, 16 Apr 2025 17:05:55 +0900 Subject: [PATCH] i18n(ko-KR): update `configuration.mdx` --- src/content/docs/ko/start-here/configuration.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/docs/ko/start-here/configuration.mdx b/src/content/docs/ko/start-here/configuration.mdx index 44c33162..39721b54 100644 --- a/src/content/docs/ko/start-here/configuration.mdx +++ b/src/content/docs/ko/start-here/configuration.mdx @@ -33,7 +33,7 @@ export default defineConfig({ db(), studioCMS({ dbStartPage: false, - // ...기타 구성 옵션 + // 기타 구성 옵션 }), ], }); @@ -41,7 +41,7 @@ export default defineConfig({ ## `studiocms.config.mjs` 파일 사용 (권장) -이 파일은 자동으로 선택되며, 이 옵션을 사용하기로 선택한 경우 astro.config에 전달된 모든 옵션을 덮어씁니다. 아래와 같이 모든 StudioCMS 구성 옵션을 이 파일로 옮겨야 합니다. +이 파일은 자동으로 선택되며, 이 옵션을 사용하기로 선택한 경우 `astro.config.mjs`에 전달된 모든 옵션을 덮어씁니다. 아래와 같이 모든 StudioCMS 구성 옵션을 이 파일로 옮겨야 합니다. ### 예시 파일 구조 @@ -79,7 +79,7 @@ import { defineStudioCMSConfig } from "studiocms/config"; export default defineStudioCMSConfig({ dbStartPage: false, - // ...기타 구성 옵션 + // 기타 구성 옵션 }) ```