前端相关

悲伤往事 / 2023-05-23 / 原文

删除node_modules中的缓存文件

npm install rimraf -g
cd node_modules
rimraf .cache

清除缓存

 npm cache clear --force