diff --git a/src/node/entry.ts b/src/node/entry.ts index 3b95f9e9..890ad6ae 100644 --- a/src/node/entry.ts +++ b/src/node/entry.ts @@ -161,7 +161,7 @@ const main = async (args: DefaultedArgs): Promise => { if (!args.socket && args.open) { // The web socket doesn't seem to work if browsing with 0.0.0.0. - const openAddress = serverAddress.replace(/:\/\/0.0.0.0/, "://localhost") + const openAddress = serverAddress.replace("://0.0.0.0", "://localhost") await open(openAddress).catch((error: Error) => { logger.error("Failed to open", field("address", openAddress), field("error", error)) })