diff --git a/apps/desktop/src/main/index.ts b/apps/desktop/src/main/index.ts index a4bf627..0e8a056 100644 --- a/apps/desktop/src/main/index.ts +++ b/apps/desktop/src/main/index.ts @@ -145,6 +145,10 @@ app.whenReady().then(createWindow) app.on('window-all-closed', () => { if (process.platform !== 'darwin') { stopServerProcess() + if (process.platform === 'win32') { + app.exit(0) + return + } app.quit() } })