问题描述:
- 今天想跑一下以前的一个React项目,在Gitee 将项目clone下来并cnpm install后,
cnpm start
启动应用 - 在浏览器打开时报错:
TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type undefined
解决:
只需要把【react-scripts】升级到【"^3.4.0"】即可
- 删除
node_modules
文件夹 - 在
package.json
中,把【“react-scripts”: “^3.x.x”】 替换为【“react-scripts”: “^3.4.0”】 - 执行
cnpm install
或者yarn install
重新安装依赖包 - 执行
cnpm start
重新启动应用即可
文章仅为本人学习过程的一个记录,仅供参考,如有问题,欢迎指出!