本文主要是介绍pnpm设置全局存储路径,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
pnpm设置全局存储路径
设置存储路径
查看当前存储路径
pnpm c get
设置存储路径
pnpm config set global-bin-dir "D:\software\Plugins\pnpm\pnpm-store"
pnpm config set cache-dir "D:\software\Plugins\pnpm\pnpm-store\cache"
pnpm config set state-dir "D:\software\Plugins\pnpm\pnpm-store\state"
pnpm config set global-dir "D:\software\Plugins\pnpm\pnpm-store\global"
设置国内镜像
查看当前镜像
pnpm config get registry
设置国内镜像
pnpm config set registry https://registry.npmmirror.com/
这篇关于pnpm设置全局存储路径的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!