You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Peer dependencies conflict with main React for the latest version. This causes problems on Server Side Rendering with ExpressJS.
Workarounds such as installing them anyways with --legacy-peer-deps or including those peer dependencies on React's package.json separately as "peerDependencies": { "react": "16.4.2", "react-dom": "16.4.2" }, do not solve the conflict issues for SSR practices.
Notice the 3rd article on the console output. As all of the hooks on React work just fine, it seems to me that it's a version conflict issue.
The text was updated successfully, but these errors were encountered:
Peer dependencies conflict with main React for the latest version. This causes problems on Server Side Rendering with ExpressJS.
Workarounds such as installing them anyways with
--legacy-peer-deps
or including those peer dependencies on React'spackage.json
separately as"peerDependencies": { "react": "16.4.2", "react-dom": "16.4.2" },
do not solve the conflict issues for SSR practices.Notice the 3rd article on the console output. As all of the hooks on React work just fine, it seems to me that it's a version conflict issue.
The text was updated successfully, but these errors were encountered: