feat(electron): add http routers to electron

This commit is contained in:
Esteban Abaroa
2024-11-19 18:58:24 +00:00
parent 420bc36084
commit 521d26bbe3
6 changed files with 81 additions and 104 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ const start = async () => {
}
pendingStart = true;
try {
const started = await tcpPortUsed.check(5001, '127.0.0.1');
const started = await tcpPortUsed.check(isDev ? 5002 : 5001, '127.0.0.1');
if (started) {
return;
}