Admin.NET 第一篇
一、启动后端,需要最新版本.NET 8.0
二、启动前端
设置全局淘宝镜像 npm config set registry https://registry.npm.taobao.org,淘宝镜像设置检查:npm config get registry
node.js版本,感觉版本不对会出各种莫名奇妙的问题
遇到问题处理方式:
使用npm install时遇到 “ERESOLVE unable to resolve dependency tree”
1.解决方法一:
在命令中增加 --legacy-peer-dep
选项或者--force
npm install --legacy-peer-deps
或者
npm install --force
.解决方式二
清除npm缓存: 有时候,缓存中的某些旧依赖信息可能导致冲突。尝试清除npm缓存并再次运行npm install
命令:
npm cache clean --force
删除node_modules和package-lock.json文件
使用yarn替代npm: 尝试使用yarn代替npm,yarn在处理依赖关系和解析依赖树方面具有更好的性能和稳定性。
运行以后的效果
posted on 2023-11-20 14:15 topguntopgun 阅读(204) 评论(0) 编辑 收藏 举报