diff options
author | Sarah Rainsberger | 2023-06-06 10:23:09 -0300 |
---|---|---|
committer | GitHub | 2023-06-06 10:23:09 -0300 |
commit | 62b7c119bdba76637d51cd13efe6d8da5854299d (patch) | |
tree | be79d44502236b77bea14d895ba4a05c2f8a0c59 | |
parent | 6a05bfde0bc69eb6925f8d332d5fd6a0f67d9ad8 (diff) | |
parent | 040baec380bdc7a181acdc3abe6a1e1ade73b7d9 (diff) | |
download | IT.starlight-62b7c119bdba76637d51cd13efe6d8da5854299d.tar.gz IT.starlight-62b7c119bdba76637d51cd13efe6d8da5854299d.tar.bz2 IT.starlight-62b7c119bdba76637d51cd13efe6d8da5854299d.zip |
Merge branch 'main' into i18n-french
-rw-r--r-- | docs/src/content/docs/de/reference/configuration.md | 20 | ||||
-rw-r--r-- | docs/src/content/docs/es/reference/configuration.md | 15 |
2 files changed, 33 insertions, 2 deletions
diff --git a/docs/src/content/docs/de/reference/configuration.md b/docs/src/content/docs/de/reference/configuration.md index 015acc6a..b4aef5e3 100644 --- a/docs/src/content/docs/de/reference/configuration.md +++ b/docs/src/content/docs/de/reference/configuration.md @@ -3,9 +3,25 @@ title: Konfigurations颅referenz description: Ein 脺berblick 眉ber alle von Starlight unterst眉tzten Konfigurationsoptionen. --- -## Die Starlight-Integration konfigurieren +## Konfiguriere die `starlight` Integration -Du kannst die folgenden Optionen an die Starlight-Integration 眉bergeben. +Starlight ist eine Integration, die auf dem [Astro](https://astro.build) Web-Framework aufbaut. Du kannst dein Projekt innerhalb der Astro-Konfigurationsdatei `astro.config.mjs` anpassen: + +```js +// astro.config.mjs +import { defineConfig } from 'astro/config'; +import starlight from '@astrojs/starlight'; + +export default defineConfig({ + integrations: [ + starlight({ + title: "My delightful docs site", + }), + ], +}); +``` + +Du kannst die folgenden Optionen an die `starlight` Integration 眉bergeben. ### `title` (erforderlich) diff --git a/docs/src/content/docs/es/reference/configuration.md b/docs/src/content/docs/es/reference/configuration.md index 7761ee63..a19075fb 100644 --- a/docs/src/content/docs/es/reference/configuration.md +++ b/docs/src/content/docs/es/reference/configuration.md @@ -5,6 +5,21 @@ description: Una descripci贸n general de todas las opciones de configuraci贸n qu ## Configurar la integraci贸n `starlight` +Starlight es una integraci贸n construida sobre el framework [Astro](https://astro.build). Puedes configurar tu proyecto dentro del archivo de configuraci贸n de Astro `astro.config.mjs`: + +```js +// astro.config.mjs +import { defineConfig } from 'astro/config'; +import starlight from '@astrojs/starlight'; +export default defineConfig({ + integrations: [ + starlight({ + title: "My delightful docs site", + }), + ], +}); +``` + Puedes pasar las siguientes opciones a la integraci贸n `starlight`. ### `title` (requerido) |