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
4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"postinstall_old": "node -e \"try { require('fs').symlinkSync(require('path').resolve('./static/resources'), require('path').resolve('../') + '/resources') } catch (e) {}\""
},
"dependencies": {
"@docusaurus/core": "^2.3.1",
"@docusaurus/preset-classic": "^2.3.1",
"@docusaurus/core": "^3.0.0",
"@docusaurus/preset-classic": "^3.0.0",
Copy link

Choose a reason for hiding this comment

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

React 16 incompatible with Docusaurus v3 upgrade

High Severity

Upgrading @docusaurus/core and @docusaurus/preset-classic from v2 to ^3.0.0 requires React 18+, but react and react-dom remain pinned at ^16.14.0. Docusaurus v3 has a peer dependency on react >= 18, so this will fail to install (peer dependency conflict) or fail at runtime. Both react and react-dom need to be upgraded to ^18.0.0 as part of this major version bump.

Additional Locations (1)

Fix in Cursor Fix in Web

"react": "^16.14.0",
"react-dom": "^16.14.0"
},
Expand Down
Loading