Skip to content

Commit b2312d6

Browse files
committed
Replace "0.0.0.0" with "localhost"
As it turns out, Chrome will not recognise "0.0.0.0" as a valid IP.
1 parent bc24747 commit b2312d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/run

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ http.createServer(function (request, response) {
6969
}
7070
}).listen(port, hostname);
7171

72-
console.log('Running ' + path.basename(inputFile) + ' at http://' + hostname + ':' + port);
72+
console.log('Running ' + path.basename(inputFile) + ' at http://localhost:' + port);

0 commit comments

Comments
 (0)