lower timeout

This commit is contained in:
Tommy D. Rossi
2025-11-24 19:30:41 +01:00
parent 1e880b90d8
commit 393f3b2d6d
+1 -1
View File
@@ -84,7 +84,7 @@ const NO_TABS_ERROR = `No browser tabs are connected. Please install and enable
async function isPortTaken(port: number): Promise<boolean> {
try {
const response = await fetch(`http://localhost:${port}/`, {
signal: AbortSignal.timeout(500)
signal: AbortSignal.timeout(100)
})
return response.ok
} catch {