const { app, BrowserWindow, protocol } = require('electron'); const path = require('path'); const url = require('url'); // Handle creating/removing shortcuts on Windows when installing/uninstalling if (require('electron-squirrel-startup')) { app.quit(); } const createWindow = () => { // Create the browser window const mainWindow = new BrowserWindow({ width: 1200, height: 800, webPreferences: { nodeIntegration: false, contextIsolation: true, preload: path.join(__dirname, 'preload.cjs') // Optional: for exposing APIs to renderer } }); // In production, load the bundled app if (app.isPackaged) { mainWindow.loadFile(path.join(__dirname, '../dist/index.html')); } else { // In dev mode, load from the vite dev server mainWindow.loadURL('http://localhost:5173'); mainWindow.webContents.openDevTools(); } }; // Create window when Electron is ready app.whenReady().then(() => { createWindow(); app.on('activate', () => { // On macOS it's common to re-create a window in the app when the // dock icon is clicked and there are no other windows open. if (BrowserWindow.getAllWindows().length === 0) createWindow(); }); }); // Quit when all windows are closed, except on macOS app.on('window-all-closed', () => { if (process.platform !== 'darwin') { app.quit(); } });