1// In the Main.js file in electron
2app.on('ready', () => {
3 mainWindow = new BrowserWindow({
4 // Add these lines of code and it should start working
5 webPreferences: {
6 nodeIntegration: true,
7 contextIsolation: false,
8 }
9 });
10});