vivipure / TIL

Today I learned
0 stars 0 forks source link

npm 疑难杂症 #50

Open vivipure opened 2 years ago

vivipure commented 2 years ago

Cannot read properties of null (reading 'pickAlgorithm')

清除缓存:

npm cache clear --force

husky: command not found

原因: 环境变量解析问题

解决: 在 pre-commit 中添加shell

PATH="/usr/local/bin:$PATH"

cannot set property closed of # which has only a getter

迁移电脑时,重新运行前端项目,都会报这个错。发现是node版本问题。nodejs 18.* 版本文件处理的方式有变化,导致webpack打包失败。

解决:nodejs 版本降级,使用16.18.1 版本即可