在使用npm安装依赖的时候控制台报错: npm ERR! ERESOLVE unable to resolve dependency tree

 

解决方法
在npm install 中加入 –legacy-peer-deps 或者 –force

npm install --legacy-peer-deps
npm install --force