我正在开发一个 Electron.js 项目。运行时
yarn electron-builder build
它会创建 .exe
文件。
当我在 Windows 上安装该应用程序时,它会抛出一个错误
主进程中发生 JavaScript 错误
在 package.json 上
"devDependencies": {
"electron-builder": "^22.14.13",
"electron": "^6.0.12",
"@expo/electron-adapter": "^0.0.55",
}
"dependencies": {
"expo": "~44.0.6",
}
问题是,当我在本地运行时,控制台上没有给出任何错误。
建议我如何解决这个问题。
index.js
import { registerRootComponent } from 'expo';
import App from './App';
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in Expo Go or in a native build,
// the environment is set up appropriately
registerRootComponent(App);
对我有用的解决方案: