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, - // ...기타 구성 옵션 + // 기타 구성 옵션 }) ```