Last active
February 18, 2025 17:20
-
-
Save chase/df9e85202806791963dcaf85721c2fdb to your computer and use it in GitHub Desktop.
Electron 34.2.0 crash reproduction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { app, BrowserWindow } = require('electron'); | |
app.whenReady().then(async () => { | |
const win = new BrowserWindow({ | |
width: 800, | |
height: 600, | |
show: false, | |
webPreferences: { | |
offscreen: true, | |
}, | |
}); | |
win.loadURL('https://github.com/electron/electron'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment