Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/nextjs-13_2_0/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"next": "13.2.0",
"next": "15.5.14",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

React 18 incompatible with Next.js 15 App Router

High Severity

Bumping next to 15.5.14 while keeping react and react-dom at 18.2.0 breaks the application. Next.js 15's App Router requires React 19, and this project uses the App Router (has an app/ directory with layout.tsx and page.tsx). The build will fail or produce runtime errors because the React version peer dependency is not satisfied.

Additional Locations (1)
Fix in Cursor Fix in Web

"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.4.5"
Expand Down
Loading