feat: I'm noticing that when the application is launched, it do...

This commit is contained in:
trueheads
2025-12-18 20:16:33 -06:00
parent 8d6dae7495
commit 35ecb0dd2d
7 changed files with 412 additions and 11 deletions

View File

@@ -259,10 +259,10 @@ async function waitForServer(maxAttempts = 30): Promise<void> {
function createWindow(): void {
const iconPath = getIconPath();
const windowOptions: Electron.BrowserWindowConstructorOptions = {
width: 1400,
height: 900,
minWidth: 1024,
minHeight: 700,
width: 1600,
height: 950,
minWidth: 1280,
minHeight: 768,
webPreferences: {
preload: path.join(__dirname, "preload.js"),
contextIsolation: true,