import Link from 'next/link' export default function Page() { return (

Instant Navigation Mode Demo

This fixture tests the Instant Navigation Mode toggle in Next.js Dev Tools. When enabled, navigations show only the cached or prefetched state — dynamic data is not streamed.

How to test

  1. Open Next.js Dev Tools (click the Next.js logo in the corner).
  2. Toggle Instant Navigation Mode to On. The indicator turns blue.
  3. Click the link below. You should see the loading skeleton instead of the final page content.
  4. Click the blue Instant UI only indicator to unblock dynamic data and resume normal navigation.
) }