nextjs-navigation
Installation
SKILL.md
Next.js Navigation
Expert guidance for Next.js App Router navigation patterns, prefetching behavior, and navigation-specific optimizations.
Link Prefetching Behavior
Prefetch behavior differs significantly between App Router and previous Next.js versions:
App Router Prefetch Props
prefetch={false}- Disables all prefetching, including on hover. In previous Next.js versions, this would still prefetch on hover.prefetch={undefined}- Prefetches static routes only. Dynamic routes are not prefetched.prefetch={true}- Prefetches both static and dynamic routes.
Example:
// No prefetching at all
<Link href="/dashboard" prefetch={false}>Dashboard</Link>
Related skills
More from goncy/skills
whatsapp-web-js
Expert guidance for whatsapp-web.js, a Puppeteer-based library providing high-level API to interact with WhatsApp Web. Use when building WhatsApp bots, automating WhatsApp messaging, integrating WhatsApp into applications, or working with WhatsApp Web automation, message handling, media sending, group management, or channel operations.
89nextjs-caching
>-
50nextjs-rendering
>-
41kick-api
>-
1