electron+vue项目使用serialport报错Cannot read property ‘indexOf‘ of undefined解决办法

发布时间:2024年01月15日

描述

使用Electron+Vue项目时引入serialport串口后启动时报下面错误

Cannot read property 'indexOf' of undefined

serialport报错Cannot read property 'indexOf' of undefined

解决方法

打开vue.config.js找到pluginOptions -> electronBuilder -> externals添加serialport

module.exports = {
  pluginOptions: {
    electronBuilder: {
      externals: ['serialport'],
    }
  }
}
文章来源:https://blog.csdn.net/anyaoqi/article/details/135595554
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。