From 40a69ded45ce673dbbbfb8fb80626cc10c2e1195 Mon Sep 17 00:00:00 2001 From: Paul Valladares Date: Thu, 13 Jun 2024 04:03:28 -0600 Subject: i18n(es): update `configuration` (#1998) Co-authored-by: HiDeoo <494699+HiDeoo@users.noreply.github.com> --- docs/src/content/docs/es/reference/configuration.mdx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/src/content/docs/es/reference/configuration.mdx b/docs/src/content/docs/es/reference/configuration.mdx index 2f0981ac..1c530d5e 100644 --- a/docs/src/content/docs/es/reference/configuration.mdx +++ b/docs/src/content/docs/es/reference/configuration.mdx @@ -215,7 +215,8 @@ type SidebarItem = { ```ts interface BadgeConfig { text: string; - variant: 'note' | 'tip' | 'caution' | 'danger' | 'success' | 'default'; + variant?: 'note' | 'tip' | 'caution' | 'danger' | 'success' | 'default'; + class?: string; } ``` @@ -568,3 +569,13 @@ starlight({ ``` Consulta la [Referencia de Plugins](/es/reference/plugins/) para obtener detalles sobre cómo crear tus propios plugins. + +### `credits` + +Habilita la visualización de un enlace “Hecho con Starlight” en el pie de página de tu sitio. + +```js +starlight({ + credits: true, +}); +``` -- cgit