electron打包 Cannot read properties of undefined (reading 'info')
时间: 2023-08-24 22:15:15 浏览: 325
这个错误通常是由于在Electron打包过程中出现了问题导致的。根据提供的引用内容,我注意到你在主进程中使用了`@electron/remote`模块来进行初始化和启用远程模块。这个模块在Electron的打包过程中可能会出现问题。
一种可能的解决方法是在打包配置文件中添加`nodeIntegration: true`选项,以确保在打包后的应用程序中可以使用Node.js模块。另外,还需要确保在打包过程中正确地包含了`@electron/remote`模块。
另外,还需要检查你的代码中是否有其他地方出现了未定义的属性`info`。这可能是由于代码逻辑错误或其他依赖关系问题导致的。
总结起来,解决这个错误的步骤包括:
1. 在打包配置文件中添加`nodeIntegration: true`选项。
2. 确保正确地包含了`@electron/remote`模块。
3. 检查代码中是否有其他地方出现了未定义的属性`info`。
希望这些信息对你有帮助!\[1\]\[2\]\[3\]
#### 引用[.reference_title]
- *1* *2* *3* [electron 使用remote 报错:Cannot read properties of undefined (reading ‘BrowserWindow‘)](https://blog.csdn.net/baixue0111/article/details/122088933)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文