Module build failed: TypeError [ERR_INVALID_ARG_TYPE]: The “path“ argument must be of type string.

今天在开一个新vue项目时候突然报错,原因未知,查了好久才发现是sass-loader版本过高导致的

错误代码:

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

网上的问题来源大多是react项目的报错,鲜有vue的。

解决方案:
重装低版本sass-loader

npm uninstall sass-loader

npm install --save-dev sass-loader@7.3.1

你可能感兴趣的:(vue,vue)