Next.js Daily: CSS Chunking Algorithm and Performance Improvements
Four pull requests were merged to Next.js on May 18th, including a major new experimental CSS chunking algorithm for Turbopack and task prioritization improvements. Additional testing infrastructure updates were also completed.
Duration: PT2M1S
Episode overview
This episode is a short developer briefing from Next.js Daily.
It explains recent repository work in plain language.
- Show: Next.js Daily
- Published: 2026-05-18T10:02:04Z
- Audio duration: PT2M1S
Transcript excerpt
This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.
Good morning. This is Next.js Daily for Monday, May 18th, 2026.
Tobias Koppers merged a significant addition to Turbopack - a new graph-based CSS chunking algorithm available behind the experimental flag `cssChunking: "graph"`. This algorithm models CSS ordering as a weighted DAG and aims to reduce overshipping of CSS while optimizing for shared chunks across pages. The feature…
Tim Neutkens merged improvements to the test infrastructure, converting more tests from the legacy `createNext` pattern to the newer `nextTestSetup` approach. This continues the ongoing effort to modernize the testing framework across 31 files.
Sokra also merged two performance-focused changes to the Turbopack task system. The first introduces a new "Recomputation" priority level that schedules recomputed tasks ahead of invalidation phases, improving build latency when downstream consumers are waiting for task outputs. The second optimizes the asset…
Four additional commits landed covering the same changes, with the CSS chunking algorithm representing the largest addition at over 3,200 lines added across 27 files.
What's next: The experimental CSS chunking feature will likely see real-world testing and…
Nearby episodes from Next.js Daily
- Agentic Workflows and Development Loop Improvements
- Developer Experience Improvements and Cache Components Updates
- Turbopack Resolver Fixes and Performance Improvements
- Turbopack Hash Encoding and Dev Tools Improvements
- Weekly Recap - Developer Experience & Performance Improvements
- Developer Experience Improvements and Build Pipeline Fixes
- Server Action Fixes and Instant Insights Improvements
- Caching Improvements and React Upgrade