From f7a86948baf236d2ad64d4d4269e7e2415a5701c Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Fri, 20 Mar 2026 16:06:44 +0100 Subject: [PATCH] Update startup resources in run-electron-dev script --- scripts/run-electron-dev.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-electron-dev.cjs b/scripts/run-electron-dev.cjs index 09babce..db4229c 100644 --- a/scripts/run-electron-dev.cjs +++ b/scripts/run-electron-dev.cjs @@ -6,7 +6,7 @@ const projectRoot = path.resolve(__dirname, '..') const electronBinary = require('electron') const relaunchExitCode = 75 const devServerUrl = process.env.VITE_DEV_SERVER_URL || 'http://127.0.0.1:5173' -const startupResources = [devServerUrl, 'http://127.0.0.1:8000/health'] +const startupResources = ['tcp:127.0.0.1:5173', 'tcp:127.0.0.1:8000'] const env = { ...process.env, VITE_DEV_SERVER_URL: devServerUrl,