問題:npm create vue@latest、和npm install 不管是電腦cmd上還是vscode終端上都是卡很久或不動!
解決:
1、查看npm代理
npm config get registry
2、更換npm鏡像
npm config set registry=https://registry.npmmirror.com
這里換成淘寶源好像也不太行,不知道什么原因!
npm config set registry https://registry.npm.taobao.org
3、查看
npm config get registry
4、創建vue3 速度就可以了!
2023.12.10