问题:
npm WARN [email protected] requires a peer of [email protected]>=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 install 命令即可
原文地址:https://www.cnblogs.com/dekevin/p/12347857.html
时间: 2024-10-14 23:27:29