diff --git a/app.js b/app.js index 6f73755f4..8f935738c 100644 --- a/app.js +++ b/app.js @@ -4,7 +4,7 @@ var app = express(); app.use('/', express.static(__dirname + '/')); app.get('*', function(req, res) { - return res.sendFile('index.html'); + return res.sendFile(__dirname + '/' + 'index.html'); }); app.start = function(port, callback) {