Build failed with error code: 1 npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules\fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
时间: 2023-07-08 12:52:34 浏览: 665
twoone.rar+js+node+npm
这个错误通常是因为在你的项目中存在缺失的依赖项。你可以尝试使用以下命令解决这个问题:
1. 清除 npm 缓存:
```
npm cache clean --force
```
2. 删除 node_modules 文件夹:
```
rm -rf node_modules
```
3. 安装所有依赖项:
```
npm install
```
如果这些步骤不能解决问题,你可以尝试升级 npm 版本或者使用其他的包管理器,如 Yarn。
阅读全文