Skip to content

Instantly share code, notes, and snippets.

@chase
Last active February 18, 2025 17:20
Show Gist options
  • Save chase/df9e85202806791963dcaf85721c2fdb to your computer and use it in GitHub Desktop.
Save chase/df9e85202806791963dcaf85721c2fdb to your computer and use it in GitHub Desktop.
Electron 34.2.0 crash reproduction
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