Next.js 16.3 Preview Brings Instant Navigations and a Memory-Smart Turbopack
Vercel dropped the Next.js 16.3 Preview on June 26, 2026, and followed up with a dedicated Turbopack deep-dive on June 29. Two headline features stand out: Instant Navigations, a rethink of client-side routing that makes page transitions feel genuinely instantaneous, and a smarter Turbopack that finally stops eating your RAM on large projects.
Instant Navigations: Zero-Latency Route Transitions
The biggest user-facing improvement in 16.3 is Instant Navigations. The system uses partial prefetching to create a reusable route shell — a cached layout skeleton stored on the client. When a user clicks a link, the shell renders immediately while the full page data streams in behind it. The result is that navigating between pages feels essentially instant, even on slow connections, because the chrome of the interface is already present.
This is a meaningful evolution from earlier Next.js prefetching approaches, which pre-fetched entire pages and became expensive at scale. The new model is selective and client-cached: repeated visits to the same route get cheaper over time rather than more expensive. For content-heavy apps with large layouts, this is a genuine performance win without any code changes.
Turbopack: Memory Eviction and Persistent Cache
Turbopack has two long-requested improvements in this release. Memory eviction means the bundler now sheds build artifacts it is unlikely to need again — capping memory growth on large codebases, which was a pain point that drove some teams back to webpack. The persistent build cache survives process restarts, meaning cold starts after a deployment or CI run are dramatically faster.
Also landing: Rust React Compiler support (compiling React's new compiler in Rust for faster transforms) and import.meta.glob, which makes file-system-based dynamic imports simpler in Turbopack projects. Together these close most of the remaining parity gaps between Turbopack and webpack-based setups that still held some teams back.
AI Developer Tooling Built In
16.3 also ships a set of AI developer tools as first-class features: bundled documentation accessible inside the IDE, Skills for common Next.js patterns, browser introspection for debugging component state, and actionable error messages that suggest specific fixes rather than pointing at raw stack traces.
This reflects Vercel's bet that AI-assisted development will become the default workflow — building the scaffolding directly into the framework rather than expecting developers to assemble it from separate tools. Whether or not you use those features immediately, having them in the framework means they are ready when your team adopts them.
When to Upgrade
16.3 is in preview now, with a stable release expected within weeks. For projects already on Next.js 16.x, testing Instant Navigations and the Turbopack memory improvements in preview is worth doing early — both have a direct impact on end-user performance and daily developer experience that you will notice immediately.