搭建VUE应用的时候,fsevents报错问题

为什么80%的码农都做不了架构师?>>>   hot3.png

这个问题比较坑,排查错误花了将近一天时间,虽然不影响编译生成文件,但是编译过程中出现错误总感觉心情不爽,后来想到了选择性依赖,于是便动手尝试,终于搞定了,好了废话不多说重点是解决方案

编译时候回出现如下类似错误

platform unsupported [email protected][email protected][email protected][email protected] › fsevents@^1.0.0 Package require os(darwin) not compatible with your platform(linux) [fsevents@^1.0.0] optional install error: Package require os(darwin) not compatible with your platform(linux)

然后查阅了不少资料,成功解决此情况:

首先在package.json中加入如下配置:

"optionalDependencies"{"fsevents":"*";},

接下来在webpack.base.conf.js中加入如下配置:

搭建VUE应用的时候,fsevents报错问题_第1张图片

OK此时再npm install 就不会有这个错误了;

另外说一下这个fsevents是在Mac用的,而window/linux却不行;

转载于:https://my.oschina.net/VILLE/blog/1571244

你可能感兴趣的:(搭建VUE应用的时候,fsevents报错问题)