Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/content/docs/ko/start-here/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ export default defineConfig({
db(),
studioCMS({
dbStartPage: false,
// ...기타 구성 옵션
// 기타 구성 옵션
}),
],
});
```

## `studiocms.config.mjs` 파일 사용 (권장)

이 파일은 자동으로 선택되며, 이 옵션을 사용하기로 선택한 경우 astro.config에 전달된 모든 옵션을 덮어씁니다. 아래와 같이 모든 StudioCMS 구성 옵션을 이 파일로 옮겨야 합니다.
이 파일은 자동으로 선택되며, 이 옵션을 사용하기로 선택한 경우 `astro.config.mjs`에 전달된 모든 옵션을 덮어씁니다. 아래와 같이 모든 StudioCMS 구성 옵션을 이 파일로 옮겨야 합니다.

### 예시 파일 구조

Expand Down Expand Up @@ -79,7 +79,7 @@ import { defineStudioCMSConfig } from "studiocms/config";

export default defineStudioCMSConfig({
dbStartPage: false,
// ...기타 구성 옵션
// 기타 구성 옵션
})
```

Expand Down
Loading