fix: Starlight social-Config auf Objekt-Format korrigieren

social erwartet in dieser Version ein Objekt, kein Array.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Thomas Soring
2026-03-05 21:13:10 +01:00
parent 48e1d877a9
commit b2a4ca660d

View File

@@ -11,9 +11,9 @@ export default defineConfig({
src: './src/assets/logo.svg', src: './src/assets/logo.svg',
replacesTitle: false, replacesTitle: false,
}, },
social: [ social: {
{ icon: 'external', label: 'BTC AG', href: 'https://www.btc-ag.com' }, github: 'https://git.coolai.btc-ag.cloud/thsoring/docs',
], },
editLink: { editLink: {
baseUrl: 'https://git.coolai.btc-ag.cloud/thsoring/docs/edit/main/', 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' }, attrs: { property: 'og:image', content: '/og-image.png' },
}, },
], ],
components: {},
}), }),
], ],
}); });