Fix log when execut npm start script

This commit is contained in:
Raphael Amorim 2015-03-26 22:00:08 -03:00
parent 89fc8a4d7f
commit e9ef277147
1 changed files with 1 additions and 1 deletions

View File

@ -60,5 +60,5 @@ var app = connect()
var portToUse = port || 8080;
var server = http.createServer(app);
server.listen(portToUse);
console.log('Open http://localhost:' + portToUse + '/react-native/_index.html');
console.log('Open http://localhost:' + portToUse + '/react-native/index.html');
module.exports = server;