react运行报错TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string.

在同事帮忙下已解决,现记录一下思路:

 

  • 页面 / 控制台报错

TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined

   at validateString (internal/validators.js:117:11)

   at Object.join (path.js:375:7)

   at noopServiceWorkerMiddleware (D:\git\healthyWashing\node_modules\react-dev-utils\noopServiceWorkerMiddleware.js:14:26)

……

  • 根据提示,看出问题是在react-dev-utils下面的noopServiceWorkerMiddleware里,
  • 全局搜索‘"react-dev-utils"’,注意有双引号,找到node_modules/react-scripts/package.json文件中的"react-dev-utils": "^10.0.0",这一行。
  • 考虑到可能是没有锁定版本,最近有包有更新后造成bug的可能,所以去掉尖角号^,
  • 然后 清除缓存并重新安装依赖
npm cache clean --force
npm install
  • 再运行时项目就跑起来了。

 

 

你可能感兴趣的:(前端)