The latest Next.js update delivers dramatic performance improvements, with memory consumption dropping as much as 90% on typical projects. In a test scenario with 50 routes, memory usage fell from approximately 4.6 GB to 840 MB—an 82% reduction. These gains stem primarily from enhancements to Turbopack, which now uses disk caching and memory management by default.
Build times have accelerated significantly. Vercel's testing showed a process that previously took 21 seconds now completes in 9.2 seconds—a 2.3x improvement. The key is intelligent caching: only changed files need recompilation. When memory reaches a threshold, unused artifacts are offloaded to disk and reloaded on demand.
Runtime performance also jumped. By leveraging native Node.js streams in the rendering layer, the framework can now handle 22% more requests without code changes. The update includes an experimental React Compiler written in Rust and built into Turbopack, which cuts build times up to 46% depending on your project. Other additions include Instant Navigations for debugging slow components, versioned documentation for AI agents, custom error boundaries, and glob-pattern imports for multiple files.

