From 73955bc318d6370130a546c7968e00e151ff1ed1 Mon Sep 17 00:00:00 2001 From: lotherk Date: Fri, 27 Mar 2026 02:33:41 +0000 Subject: [PATCH] fix: update starlight social config syntax for v0.33+ --- docs/astro.config.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index 844d3ca..ff6f662 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -11,9 +11,9 @@ export default defineConfig({ dark: './src/assets/logo-dark.svg', replacesTitle: true, }, - social: { - github: 'https://github.com/anomalyco/totalrecall', - }, + social: [ + { icon: 'github', label: 'GitHub', href: 'https://github.com/anomalyco/totalrecall' }, + ], editLink: { baseUrl: 'https://github.com/anomalyco/totalrecall/edit/main/', },