PCF | Using Fluent UI and React | Error during react installation
Other day while building PCF project using Microsoft Fluent UI and React, got an error while installing ‘React’ using following command.
npm install react react-dom @fluentui/react
Reason and Fix:
- Reason was, React 18 was installed in my machine and Fluent UI will not install since it requires a React version less than 18.
- To fix the issue run following commands which uninstalls the current version and installs Fluent compatible version of React.
npm uninstall react react-dom @fluentui/react
npm install react@16.8.6 react-dom@16.8.6 @fluentui/react@8.29.0
Please refer Scott Durow article on the same issue.
🙂
Comments (0)
Trackbacks (0)
Leave a comment
Trackback