Describe the bug
Using this boilerplate, you cannot install fluent-ffmpeg npm module
To Reproduce
Steps to reproduce the behavior:
yarn add fluent-ffmpegyarn serve:electronScreenshots

Environment:
Additional context
I think it's a problem with Webpack configuration.
Proposed solution can be found in this comment
You can apply the fix yourself by modifying the webpack config. See the docs for more details.
I've created vue.config.js in the same directory as the package.json and added the following code:
Does that look correct?
module.exports = {
pluginOptions: {
electronBuilder: {
chainWebpackRendererProcess: config => {
config.plugin('define').tap(args => {
args[0]['process.env.FLUENTFFMPEG_COV'] = false
return args
})
},
}
}
}
That looks right. It matches the suggested solution in the other issue.
Most helpful comment
That looks right. It matches the suggested solution in the other issue.