0
点赞
收藏
分享

微信扫一扫

npm WARN stylus-loader@3.0.2 requires a peer of stylus@>=0.52.4 but none is installed. You must inst

49路末班车 2022-05-30 阅读 12

 

问题:

npm WARN stylus-loader@3.0.2 requires a peer of stylus@>=0.52.4 but none is installed. You must install peer dependencies yourself.

 

解决办法:

1、在package.json文件中添加如下代码:

    "stylus-loader": "^3.0.2",
"stylus": "0.52.4",

npm WARN stylus-loader@3.0.2 requires a peer of stylus@>=0.52.4 but none is installed. You must inst_json 

 

2、执行npm install 命令即可


举报

相关推荐

0 条评论