我基于https://github.com/facebook/create-react-app运行:
npx create-react-app my-app
但是我得到这个错误:
error An unexpected error occurred: "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz: unable to get local issuer certificate".
我一周前尝试过,它在另一个项目中也起作用。现在,它似乎不再起作用。 文件夹结构未创建。
我尝试将strict-ssl设置为false,但不能解决问题。有什么建议吗?
答案 0 :(得分:1)
将strict ssl标志设置为false对我有用
纱线:
yarn config set "strict-ssl" false -g
npm:
npm config set "strict-ssl" false -g
答案 1 :(得分:0)
尝试设置严格的 ssl 'false',它对我有用
yarn config set "strict-ssl" false -g