Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const { app, BrowserWindow } = require('electron');
function createWindow () {
const mainWindow = new BrowserWindow({
webPreferences: {
nodeIntegration: true,
contextIsolation: false
}
});
mainWindow.on('close', () => {
app.quit();
mainWindow.loadFile('index.html');
app.whenReady().then(() => {
createWindow();