errors/instant-link-prefetch-partial.mdx
During a client-side navigation, a <Link prefetch={true}> navigated to a route that has not enabled Partial Prefetching. With Cache Components enabled, prefetch={true} is a legacy "full" prefetch that pulls down the route's dynamic data along with its App Shell. This will lead to slower, more expensive prefetches.
Routes that opt into Partial Prefetching skip the dynamic data at prefetch time, leaving you free to choose when it loads: at navigation via streaming, ahead of time via runtime prefetching, or not at all. The check fires at navigation time, not prefetch time, so existing apps that have recently enabled Cache Components are not flooded with warnings for every <Link prefetch={true}> on the page.
Choose this fix when the target route has an App Shell with dynamic content below it. Opting into Partial Prefetching tells Next.js to prefetch only the App Shell and defer the dynamic data to navigation. Opt in per-route or app-wide, and from there layer on further prefetch optimizations.
Export prefetch from the page or layout of the route the link points at.
export const prefetch = 'partial'
export default function DashboardPage() {
return <Dashboard />
}
Set partialPrefetching to true in next.config to opt the whole app in.
module.exports = {
partialPrefetching: true,
}
'partial' prefetches only the App Shell, which is the route's static and cached content. Uncached dynamic data is no longer prefetched. To keep prefetching content that came down with prefetch={true}, work through two steps.
use cache. If the content doesn't depend on the URL, it gets included in the App Shell and that's enough.params, searchParams), it can't be included in the shared App Shell. With Partial Prefetching enabled, prefetch={true} opts the link into runtime prefetching, so the cached content is prefetched behind the runtime read.import { Suspense } from 'react'
export const prefetch = 'partial'
async function getMetrics(range) {
'use cache'
const res = await fetch(`https://api.example.com/metrics?range=${range}`)
return res.json()
}
async function Metrics({ searchParams }) {
const { range } = await searchParams
return <MetricsView metrics={await getMetrics(range)} />
}
export default function DashboardPage({ searchParams }) {
return (
<Suspense fallback={<Skeleton />}>
<Metrics searchParams={searchParams} />
</Suspense>
)
}
Learn more: Adopting Partial Prefetching.
The route's dynamic data isn't included in the prefetch. The user sees the App Shell as soon as the link enters the viewport, and the dynamic content streams in after navigation. The dynamic content arrives later than it would with a full prefetch. How much later depends on how long the dynamic data takes to fetch.
Choose this fix when you set prefetch={true} to warm up a frequently-visited route and you can accept fetching the dynamic data on navigation. Remove the prop and the link uses the default prefetch strategy, which under Cache Components prefetches the App Shell (the route's static and cached content) and skips the dynamic data.
prefetch propimport Link from 'next/link'
export default function Nav() {
return <Link href="/dashboard">Dashboard</Link>
}
The link no longer forces a full prefetch. The user gets the App Shell (static and cached content) when the link enters the viewport, and the dynamic data is fetched at navigation time. This is the default behavior under Cache Components.
prefetch={true} does not disable prefetching. It falls back to the default. To disable prefetching entirely, use prefetch={false}.<Link> prop downloads under each configuration.Choose this fix when you need the legacy full prefetch behavior and cannot adopt Partial Prefetching for the target route. Setting instant to false on the target route opts it out of instant-navigation validation.
Add the export to the page or layout file of the target route.
export const instant = false
export default function DashboardPage() {
return <Dashboard />
}
The link continues to do a full prefetch, including dynamic data, and the warning is no longer reported.
instant = false disables all instant-navigation checks for the route, not only this one. That includes Blocking-route and unrendered-segment warnings, and other Insights for the route.After applying a fix, navigate to the route and confirm the insight no longer appears in the dev overlay and the page immediately paints meaningful UI, with any <Suspense> fallbacks covering only the regions that stream in. A <Suspense> boundary around the whole page body can pass validation with an empty shell, which defeats the point of an instant navigation.
Depending on your validation level, this may only surface in development.
Instant-navigation validation runs by default in Cache Components apps and surfaces this error.
export const instant = false to the page or layout file. This opts out the segment itself. Child segments are still validated during client navigations.experimental.instantInsights.validationLevel to 'manual-warning' in next.config. This limits validation to segments that explicitly export instant.See Ensuring instant navigations for the full model.
generateMetadata()generateMetadata()generateViewport()generateViewport()Math.random() while prerenderingMath.random() in a Client ComponentDate.now() while prerenderingDate.now() in a Client Component