windows95/src/main/windows.ts
2019-08-21 09:48:49 +02:00

22 lines
400 B
TypeScript

import { BrowserWindow } from "electron";
let mainWindow;
export function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1024,
height: 768,
useContentSize: true,
webPreferences: {
nodeIntegration: true
}
});
mainWindow.loadFile("./dist/static/index.html");
mainWindow.on("closed", () => {
mainWindow = null;
});
}