淘宝npm镜像域名到期cnpm.org搭建的cnpm私有镜像下载报错解决方案

发布时间:2024年01月22日

报错如下:

14:17:56  npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock.json was generated for lockfileVersion@2. I'll try to do my best with it!
14:17:56  npm ERR! code CERT_HAS_EXPIRED
14:17:56  npm ERR! errno CERT_HAS_EXPIRED
14:17:56  npm ERR! request to https://registry.npm.taobao.org/less-loader failed, reason: certificate has expired

报错原因:

淘宝npm镜像域名到期
在这里插入图片描述

可以看见 淘宝源 使用说明
在这里插入图片描述

解决方案

找到 cnpm.org 私有镜像项目的 conifg/index.js 配置文件,修改 sourceNpmRegistry 源地址即可
在这里插入图片描述


// sourceNpmRegistry: 'https://registry.npm.taobao.org',
sourceNpmRegistry: 'https://registry.npmmirror.com', // 改成这个源地址即可
文章来源:https://blog.csdn.net/qq_41614928/article/details/135750279
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。