运行vue项目的时,遇到错误 ERROR in Cannot find module ‘node-sass’:
表示找不到node-sass模块。
是因为你没安装node-sass模块或者安装时用的cnpm而不是npm,导致版本过低。
可以通过npm install node-sass 或 cnpm install node-sass@latest 进行安装。
解决 Error: Cannot find module ‘node-sass’
复制链接 https://www.zablog.cn/?p=413
0