21 lines
466 B
JavaScript
21 lines
466 B
JavaScript
|
const { app, BrowserWindow } = require('electron');
|
||
|
const path = require('path');
|
||
|
|
||
|
let win;
|
||
|
app.whenReady().then(function () {
|
||
|
win = new BrowserWindow({
|
||
|
webPreferences: {
|
||
|
contextIsolation: true,
|
||
|
preload: path.join(__dirname, 'preload.js')
|
||
|
}
|
||
|
});
|
||
|
|
||
|
win.loadFile('index.html');
|
||
|
|
||
|
win.webContents.on('console-message', (event, level, message) => {
|
||
|
console.log(message);
|
||
|
});
|
||
|
|
||
|
win.webContents.on('did-finish-load', () => app.quit());
|
||
|
});
|