Skip to content

Commit e8b5295

Browse files
author
John McCambridge
committed
Add space before pipes
1 parent a596bc3 commit e8b5295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/server/src/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ const bold = (text: string | number): string | number => {
236236
});
237237

238238
if (options.noAuth && options.host === "0.0.0.0" || options.allowHttp && options.host === "0.0.0.0") {
239-
logger.warn("0.0.0.0 is accessible to any device on your network");
239+
logger.warn("0.0.0.0 is accessible to every device on the network you're connected to. Make sure you set up authentication to prevent unauthorized access.");
240240
}
241241
logger.info("Starting webserver...", field("host", options.host), field("port", options.port));
242242
app.server.listen(options.port, options.host);

0 commit comments

Comments
 (0)