104 字
1 分钟
【CS心得】搭博客
2024-10-28

重装依赖:#

删除 node_modules 文件夹和 package-lock.json(或 pnpm-lock.yaml)文件,然后重新安装依赖:

rm -rf node_modules
rm package-lock.json
pnpm install

(网络有连接问题就先用淘宝镜像源配置,再进行安装:

pnpm set registry https://registry.npmmirror.com/)

(原源:)

pnpm set registry https://registry.npmjs.org/

可以试试更新依赖项:

pnpm outdated

有时候要清理pnpm缓存:

pnpm store prune

最后commit work flow:

git add .  
git commit -m "Update package.json and pnpm-lock.yaml" 
git push origin main
【CS心得】搭博客
https://tillyendless.github.io/posts/cs心得搭博客/
作者
发布于
2024-10-28
许可协议
CC BY-NC-SA 4.0