From d65f23d6eeebbd0a8b7aca550a77356d15024dc1 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Sat, 21 Feb 2026 11:35:09 -0700 Subject: [PATCH] Add chevron-right to astro-icon include list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 50Ω resistor button uses lucide:chevron-right which wasn't in the explicit icon include list, causing SSR to crash mid-stream on the homepage. --- 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 a1bc78c..51fabc8 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', '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'] } }), ], telemetry: false, devToolbar: { enabled: false },