使用脚手架搭建项目时,发现执行的非常慢,找不到原因,换了淘宝镜像,重新安装了脚手架版本都没有用,然后在CSDN上找了好久才找到解决方法:
在cmd中输入一下命令来查找自己的npmrc文件位置
npm config get userconfig
找到该文件之后,删除它
再在cmd中执行以下命令,用来清除缓存
npm cache clean –force
如果报错,大概率是cmd的版本大于5 ,则执行以下命令
npm cache clear --force && npm install --no-shrinkwrap --update-binary
清除完成,vue项目搭建成功