From ab5e8211fed83fc93574b253d1e9d644a8e6a9aa Mon Sep 17 00:00:00 2001 From: Corneliu Croitoru Date: Wed, 29 Jul 2026 15:17:00 +0200 Subject: [PATCH] fix(docs): add summarizing storage page to the Swift sidebar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The page shipped ~July 14 without a sidebar entry; the starlight-sidebar-topics middleware throws for any page not attached to a topic, which has failed every docs deploy since — the live site is two weeks stale. Verified locally: full astro build now completes (111 pages). Closes #645 Code written by Claude (Fable 5), architected and approved by @cornelcroi. --- docs/astro.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index 61678b83..47660171 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -250,6 +250,7 @@ export default defineConfig({ { label: 'File', slug: 'swift/storage/built-in/file' }, { label: 'Device (SwiftData)', slug: 'swift/storage/built-in/device' }, { label: 'Transforming (PII scrub)', slug: 'swift/storage/built-in/transforming' }, + { label: 'Summarizing', slug: 'swift/storage/built-in/summarizing' }, ], }, { label: 'Custom store', slug: 'swift/storage/custom' },