Skip to content

Commit

Permalink
Added electron-forge
Browse files Browse the repository at this point in the history
  • Loading branch information
rudydelorenzo committed Oct 26, 2021
1 parent 6e0056d commit b99bd33
Show file tree
Hide file tree
Showing 4 changed files with 12,161 additions and 763 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.DS_Store
/node_modules/

out/
8 changes: 4 additions & 4 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ function createWindow () {
const win = new BrowserWindow({
width: 800,
height: 600
})
});

win.loadFile('index.html')
win.loadFile('index.html');
//win.webContents.openDevTools();
}

app.on('window-all-closed', function () {
app.quit()
app.quit();
})

app.whenReady().then(() => {
createWindow()
createWindow();
})
Loading

0 comments on commit b99bd33

Please sign in to comment.