vue-cli-plugin-electron-builder中使用原生模块

安装太慢
参照npm的相关配置
编译原生模块
参照https://www.jianshu.com/p/07a1473ff7fc

使用原生模块的配置
项目根目录新建vue.config.js(如果有则不用)

module.exports = {
    lintOnSave: false,
    pluginOptions: {
        electronBuilder: {
            
            externals: ['ffi','serialport','robotjs'], //这里是你使用的原生模块名字列表,改成自己的即可
            
            nodeModulesPath: ['../../node_modules', './node_modules','../node_modules']//这里是多个node_modules路径,按自己需要配置即可
        }
    }
}

你可能感兴趣的:(vue-cli-plugin-electron-builder中使用原生模块)