i18n(ko-KR): create sdk.mdx#80
Conversation
WalkthroughA new documentation file has been added in the Korean language, detailing the Changes
Suggested reviewers
Tip ⚡💬 Agentic Chat (Pro Plan, General Availability)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Lunaria Status Overview🌕 This pull request will trigger status changes. Learn moreBy default, every PR changing files present in the Lunaria configuration's You can change this by adding one of the keywords present in the Tracked Files
Warnings reference
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (6)
src/content/docs/ko/config-reference/sdk.mdx (6)
9-9: Remove unused import
TheReadMorecomponent is imported but never used in this document. Removing it will prevent build or lint warnings.
11-11: Convert to Markdown heading
The line “StudioCMS 통합 구성 옵션 스키마 참조” should be formatted as a proper heading (e.g.,## StudioCMS 통합 구성 옵션 스키마 참조), or omitted since the frontmattertitlealready provides the page title.
27-29: Simplify type annotation
Becauselifetime?already impliesundefined, you can streamline the type toboolean | { lifetime?: string }(omitting the trailing| undefined).
38-41: Align code block indentation
Indent object properties consistently (e.g., 2 spaces per level) and remove the extra space after the comma:- cacheConfig: { - lifetime: '5m', - }, + cacheConfig: { + lifetime: '5m', + },
42-42: Add trailing semicolon for consistency
The second snippet closes with})but lacks a semicolon. To match the first example (});), add the missing semicolon:-}) +});
23-31: (Optional) Demonstrate boolean usage
To fully illustrate all supported variants ofcacheConfig, consider adding a short example showing how to disable caching withcacheConfig: false.
Description
create
sdk.mdxSummary by CodeRabbit
sdkconfiguration options, including explanations and examples for thecacheConfigsetting.