Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/prefetch-keyboard-tab.md
1---2title: Prefetch on Keyboard Navigation3impact: MEDIUM4tags: prefetch, keyboard, tab, a11y5---67## Prefetch on Keyboard Navigation89Monitor focus changes and prefetch when the user is a few tab stops away from a registered element.1011**Correct (tab-aware prefetching):**1213```tsx14const { elementRef } = useForesight({15callback: () => router.prefetch("/settings"),16name: "settings-link",17// Tab prediction fires when focus approaches18});19```20