What’s New in Next.js 16.1
Next.js 16.1, bringing performance gains and workflow improvements focused on speed, stability, and developer experience.
Turbopack File System Caching (Stable)
Now enabled by default in next dev, Turbopack caches compiler artifacts to disk—delivering up to 14× faster route compilation when restarting dev servers, especially for large projects.
Next.js Bundle Analyzer (Experimental)
A new interactive bundle analyzer helps you:
- Inspect client & server bundles
- Trace full import chains
- Identify large or unnecessary dependencies
- Improve Core Web Vitals and cold start performance
Run it with:
1npx next experimental-analyze
Easier Debugging
You can now debug your app directly with:
1npx next dev --inspect
Smarter Dependency Handling
Turbopack now correctly externalizes transitive dependencies using serverExternalPackages—no more manual fixes or dependency leaks.
Additional Improvements
- ~20MB smaller Next.js installs
- New next upgrade command for smoother updates
- Improved async import bundling
- Better source map compatibility
- More detailed build and routing diagnostics
Smarter Dependency Handling
Turbopack now correctly externalizes transitive dependencies using serverExternalPackages—no more manual fixes or dependency leaks.
Upgrade Today
1# Use the automated upgrade CLI2npx @next/codemod@canary upgrade latest34# ...or upgrade manually5npm install next@latest react@latest react-dom@latest67# ...or start a new project8npx create-next-app@latest