Register arrow-right and check-circle-2 icons for pipeline strip

astro-icon requires explicit icon registration — these two were used
in PipelineStrip.astro but missing from the include list, causing
SSR render failures in production.
This commit is contained in:
Ryan Malloy 2026-02-20 15:31:21 -07:00
parent 6350f15991
commit 3ee3cd6d8a

View File

@ -9,7 +9,7 @@ export default defineConfig({
adapter: node({ mode: 'standalone' }), adapter: node({ mode: 'standalone' }),
integrations: [ integrations: [
react(), react(),
icon({ include: { lucide: ['plus', 'book-open', 'zap', 'cpu', 'activity', 'circuit-board', 'file-text', 'chevron-down'] } }), icon({ include: { lucide: ['plus', 'book-open', 'zap', 'cpu', 'activity', 'circuit-board', 'file-text', 'chevron-down', 'arrow-right', 'check-circle-2'] } }),
], ],
telemetry: false, telemetry: false,
devToolbar: { enabled: false }, devToolbar: { enabled: false },