Next Js Daily: Closing the Gaps Between Config and Behavior

Today's activity centers on a recurring pattern: tools and caches that assumed defaults instead of respecting actual project configuration, now getting fixed. Four PRs address mismatches in ESLint rules, CSS parsing, incremental caching, and package manager detection.

Duration: PT2M27S

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-09-06T22:00:27Z
  • Audio duration: PT2M27S

Transcript excerpt

This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.

Good morning. It's September 6th, and here's your Next Js Daily briefing.

The throughline in today's activity: several tools were quietly assuming defaults instead of checking what a project actually configured. Four separate fixes closed those gaps.

Start with the ESLint plugin. PR 98298 from Larslllllll fixes the no-HTML-link-for-pages rule, which only recognized standard JS and TS file extensions. If your project uses custom page extensions — MDX, for example — the rule silently missed broken links to those pages. Same author, PR 98297, tackles a related…

Second theme: caching correctness. PR 98307 from Shtokarev fixes an inconsistency in the file system cache around partial pre-rendering. The code that writes cache files, the code that reads them, and the export path all had different rules for when a fully static PPR page should get its RSC file written. That kind…

Third: package manager awareness. PR 98309 fixes the ESLint migration codemod, which was hardcoding an npx command even in pnpm projects. Small fix, but it's part of the same pattern — code that assumed one environment instead of checking the real one.

One more item: PR 98304 adds external reference links to…

Nearby episodes from Next Js Daily

  1. Turbopack's Storage Overhaul and a Quiet Accessibility Fix
  2. Image Redirects and Type Generation Cleanup
  3. Dev Server Reliability Under the Microscope
  4. Turbopack Gets Leaner, Test Suite Gets a Cleanup
  5. Cache Components Cleanup and Clearer Errors
  6. Error Responses Get Honest
  7. Rendering Edge Cases Come Home to Roost
  8. Routing Correctness and a Storage Engine Speedup