diff options
author | amelia <[email protected]> | 2022-05-11 08:31:14 -0500 |
---|---|---|
committer | amelia <[email protected]> | 2022-05-11 08:31:14 -0500 |
commit | d1570705868034cace48249fa62d02573d4e906d (patch) | |
tree | 61c005aeac5ef8e80f5263b885bd0d32aeac2cab /index.js | |
parent | d45ad14c2e2f47b2c7a253aa9dda10115e1cdb07 (diff) |
peer to pee fully working & added exe
Diffstat (limited to 'index.js')
-rw-r--r-- | index.js | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -3,16 +3,18 @@ const { app, BrowserWindow } = require('electron') const path = require('path') const createWindow = () => { const win = new BrowserWindow({ - width: 800, - height: 600, + autoHideMenuBar: true, icon: __dirname + '/icon.png', frame: false }) - + win.maximize() win.loadFile('index.html') } app.whenReady().then(() => { createWindow() - })
\ No newline at end of file + + }) + + //npm exec electron-packager .
\ No newline at end of file |