个人技术分享

1.运行以下命令来清理npm缓存:

npm cache clean --force

或者运行以下命令清理Yarn缓存:

yarn cache clean

2.删除 node_modules 和锁文件: 删除 node_modules 目录和 package-lock.jsonyarn.lock 文件,然后重新安装依赖

rm -rf node_modules package-lock.json yarn.lock
npm install

或者

rm -rf node_modules package-lock.json yarn.lock
yarn install

 安装包时忽略对等依赖冲突

npm install --legacy-peer-deps

或者 

yarn install --ignore-peer-dependencies