From b2a4ca660d50ca38c4180d27ca15caf05284495b Mon Sep 17 00:00:00 2001 From: Thomas Soring Date: Thu, 5 Mar 2026 21:13:10 +0100 Subject: [PATCH] fix: Starlight social-Config auf Objekt-Format korrigieren social erwartet in dieser Version ein Objekt, kein Array. Co-Authored-By: Claude Sonnet 4.6 --- astro.config.mjs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 8ae1103..7db6d4b 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -11,9 +11,9 @@ export default defineConfig({ src: './src/assets/logo.svg', replacesTitle: false, }, - social: [ - { icon: 'external', label: 'BTC AG', href: 'https://www.btc-ag.com' }, - ], + social: { + github: 'https://git.coolai.btc-ag.cloud/thsoring/docs', + }, editLink: { baseUrl: 'https://git.coolai.btc-ag.cloud/thsoring/docs/edit/main/', }, @@ -60,7 +60,6 @@ export default defineConfig({ attrs: { property: 'og:image', content: '/og-image.png' }, }, ], - components: {}, }), ], });