File size: 319 Bytes
ac4a6d6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { app, BrowserWindow } from 'electron';
import path from 'path'
app.on('ready', () => {
const mainWindow = new BrowserWindow({ webPreferences: {
nodeIntegration: true,
contextIsolation: false,
},});
mainWindow.loadFile(path.join(app.getAppPath(),'/dist-react/index.html'));
})
|