当前位置:   article > 正文

npm报错 TypeError [ERR_INVALID_ARG_TYPE]: The “path“ argument must be of type string.Received undefine_typeerror [err_invalid_arg_type]: the "path" argum

typeerror [err_invalid_arg_type]: the "path" argument must be of type string

npm报错 TypeError [ERR_INVALID_ARG_TYPE]: The “path” argument must be of type string.Received undefined

解决办法:

1.修改static文件夹下的package.json里sass-loader版本

"sass-loader": "^7.3.1"
  • 1

2.重新npm install

3.npmrun dev

4.遇到了新的错误

Node Sass version 5.0.0 is incompatible with^4.0.0

此错误来自sass-loader。因为node-sass @latest为v5.0.0,而sass-loader期望值为^ 4.0.0。
5.卸载5.0 重装4.x

# 卸载node-sass
npm uninstall node-sass
# 安装4.x版本(5.0之前)
npm install node-sass@4.14.1
  • 1
  • 2
  • 3
  • 4

6.npmrun dev

7.成功解决问题

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号