Error when trying to install react-redux dependency

前端 未结 1 1751
悲哀的现实
悲哀的现实 2021-01-17 22:02

I am getting an error trying to install the react-redux package onto my create-react-app application. I have tried deleting and reinstalling my node_modules folder as well a

相关标签:
1条回答
  • 2021-01-17 22:56

    It looks like you are using the latest npm version (v7). As mention in the logs, try with npm install --legacy-peer-deps


    The last time npm Blog mentioned the --legacy-peer-deps flag was while their beta version of npm v7 got public. To read more about the flag go here.

    0 讨论(0)
提交回复
热议问题