Skip to content

Commit

Permalink
Updated default IP address for local server
Browse files Browse the repository at this point in the history
This is due to a "bug" in Chrome that looks like it won't be fixed.
  • Loading branch information
Scott Warren committed May 11, 2015
1 parent fd80b0e commit 4f47a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const finalHandler = require('finalhandler')
const serveStatic = require('serve-static');

const port = process.env.PORT || '4444';
const host = process.env.HOST || '0.0.0.0';
const host = process.env.HOST || '127.0.0.1';

var serve = serveStatic(__dirname, {'index': ['tests/runner.html']})

Expand Down

0 comments on commit 4f47a09

Please sign in to comment.