解决办法
方法一、换镜像
1.npm设置淘宝镜像
npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist
2.npm删除淘宝镜像
npm config delete registrynpm config delete disturl
方法二、更改.npmrc
文件夹中的.npmrc (最高权限镜像)里面有很多信息。
其中有一条registry=https://registry.npmjs.org/
更改镜像源即可。
总结
我的问题就是淘宝镜像源过期了,npm 淘宝镜像已经从 registry.npm.taobao.org 切换到了 registry.npmmirror.com
// 1. 清空缓存
npm cache clean --force
// 2. 切换新源
npm config set registry https://registry.npmmirror.com