yarn run serve无法运行
2024-10-06 11:44:05

这几天出现了一个bug,之前vscode可以运行的前端程序,在使用yarn run serve之后会报错

1
2
3
4
5
6
yarn run v1.22.22
$ vue-cli-service serve
'vue-cli-service' is not recognized as an internal or external command,
operable program or batch file.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

后来,我根据网上的提示,尝试了删除node_modules重新安装,删除node环境重新安装,都不行。甚至npm install都出现了问题。

后来,碰巧使用系统终端(而不是vscode里的)来云心npm install,发现竟然可以了。于是我也在该终端运行yarn run serve,发现果然也可以。

于是就可以知道问题出在vscode上。我查看了vscode的权限,并使用管理员打开,以及在vscode里打开pwsh,都不能成功运行,这样暂时只能用系统终端来运行了。