We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffff95a commit 49c8a88Copy full SHA for 49c8a88
1 file changed
packages/plugin/src/hooks/network.ts
@@ -28,9 +28,10 @@ async function startWebapp() {
28
// Check if port 3030 is available (fail fast)
29
const portAvailable = await isPortAvailable();
30
if (!portAvailable) {
31
- throw new Error(
32
- "Port 3030 is already in use. Please free the port and try again.",
+ console.warn(
+ "[openscan] Warning: Port 3030 is already in use. Explorer not started.",
33
);
34
+ return
35
}
36
37
// Create deployment tracker and start server
0 commit comments