会报这样的错误提示
解决思路:
1、vscode用管理员打开 (非必须)
2、设置策略
打开 windows powerShell . 输入命令 set-ExecutionPolicy RemoteSigned 然后 Y .
查看是否设置成功 get-executionpolicy
3、下载总是超时,设置镜像源
查看镜像源
npm config get registry
yarn config get registry
设置镜像源
npm config set registry https://registry.npmmirror.com
yarn config set registry https://registry.npmmirror.com
查看配置
npm config list
yarn config list