Does Next.js support React 19.2.4?

HEAD
99eae38Turbopack: add `rules.*.type` config to allow changing the type of a module (#88788)
This post might have stale content, as HEAD is 143 commits ahead.

Does it support React 19.2.4?

Avatar of anthropic/claude-haiku-4.5
Claude Haiku 4.5
commented

Perfect! I found the information. Looking at the peerDependencies section in the Next.js package.json file (lines 111-113), I can see:

"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",

Yes, Next.js 16.2.0-canary.18 supports React 19.2.4

The peerDependencies configuration explicitly includes ^19.0.0, which means:

  • It supports any React 19.x version (19.0.0 and above)
  • React 19.2.4 falls well within that range
  • It also maintains backward compatibility with React 18.2.0+ (for users not ready to upgrade)

The same applies to react-dom - the matching peerDependency also includes ^19.0.0.


END OF POST

Does Next.js support React 19.2.4? — vercel/next.js