描述
使用Electron+Vue项目时引入serialport串口后启动时报下面错误
Cannot read property 'indexOf' of undefined
解决方法
打开vue.config.js
找到pluginOptions -> electronBuilder -> externals添加serialport
module.exports = {pluginOptions: {electronBuilder: {externals: ['serialport'],}}}
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END