From bfab38e954635c6f8f0fe1e9f336302d810ed304 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Fri, 6 Mar 2026 14:48:15 -0700 Subject: [PATCH] Add clock and layers icons to astro-icon include list RecentNotebooks component uses these icons but they weren't in the explicit include whitelist, causing a runtime AstroIconError. --- frontend/astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/astro.config.mjs b/frontend/astro.config.mjs index 85f4369..95bb90a 100644 --- a/frontend/astro.config.mjs +++ b/frontend/astro.config.mjs @@ -9,7 +9,7 @@ export default defineConfig({ adapter: node({ mode: 'standalone' }), integrations: [ react(), - icon({ include: { lucide: ['plus', 'book-open', 'zap', 'cpu', 'activity', 'circuit-board', 'file-text', 'chevron-down', 'chevron-right', 'arrow-right', 'check-circle-2'] } }), + icon({ include: { lucide: ['plus', 'book-open', 'zap', 'cpu', 'activity', 'circuit-board', 'file-text', 'chevron-down', 'chevron-right', 'arrow-right', 'check-circle-2', 'clock', 'layers'] } }), ], telemetry: false, devToolbar: { enabled: false },