在 Docker 中運行 npm 出現 Error: could not get uid/gid 的問題
但是通過設置 `unsafe-perm true` 可以解決這個問題,不可思議。
npm config set unsafe-perm true
其他可以用的 npm 配置 # 關閉安全證書檢查
npm config set unsafe-perm true
# 關閉強制 SSL
npm config set strict-ssl false
# 更改 npm 源
npm config set registry https://registry.npm.taobao.org
#設置代理
# socks5 proxy
npm config set proxy http://xx@xx.com:xxxx
http proxy#
npm config set https-proxy=http://xx@xx.com:xxxx