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.
This commit is contained in:
Ryan Malloy 2026-03-06 14:48:15 -07:00
parent 365df157b4
commit bfab38e954

View File

@ -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 },