diff options
author | jspark | 2023-09-06 22:33:36 +0900 |
---|---|---|
committer | GitHub | 2023-09-06 15:33:36 +0200 |
commit | 65ca65c22628a44da6681f4ad252d0b265211630 (patch) | |
tree | d687f5f2aae438d8ba7add4377402f38a3d36a49 | |
parent | 3db6cced1b14c77400e5d4eb6a825a5fd37f3db5 (diff) | |
download | IT.starlight-65ca65c22628a44da6681f4ad252d0b265211630.tar.gz IT.starlight-65ca65c22628a44da6681f4ad252d0b265211630.tar.bz2 IT.starlight-65ca65c22628a44da6681f4ad252d0b265211630.zip |
i18n(ko-KR): update `customization.mdx` (#661)
-rw-r--r-- | docs/src/content/docs/ko/guides/customization.mdx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/src/content/docs/ko/guides/customization.mdx b/docs/src/content/docs/ko/guides/customization.mdx index 68b4f2f8..1414d587 100644 --- a/docs/src/content/docs/ko/guides/customization.mdx +++ b/docs/src/content/docs/ko/guides/customization.mdx @@ -84,6 +84,19 @@ starlight({ }), ``` +## μ¬μ΄νΈλ§΅ νμ±ν + +Starlightμλ μ¬μ΄νΈλ§΅ μμ± κΈ°λ₯μ΄ λ΄μ₯λμ΄ μμ΅λλ€. `astro.config.mjs` νμΌμ μλ `site` μμ±μ κ°μ URLλ‘ μ€μ νμ¬ μ¬μ΄νΈλ§΅ μμ±μ νμ±νν μ μμ΅λλ€. + +```js +// astro.config.mjs + +export default defineConfig({ + site: 'https://stargazers.club', + integrations: [starlight({ title: 'μ¬μ΄νΈλ§΅μ μ¬μ©νλ μΉ μ¬μ΄νΈ' })], +}); +``` + ## νμ΄μ§ λ μ΄μμ κΈ°λ³Έμ μΌλ‘ Starlight νμ΄μ§λ μ μ νμ μ¬μ΄λλ°μ νμ¬ νμ΄μ§ μ λͺ©μ λͺ©μ°¨κ° ν¬ν¨λ λ μ΄μμμ μ¬μ©ν©λλ€. |