From 0c8f4b8525df9b3681ece41014e3fd5ffad9dc1e Mon Sep 17 00:00:00 2001 From: Michelle Bu Date: Sat, 1 Nov 2014 14:39:25 -0700 Subject: [PATCH] Fix heroku deploy --- lib/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server.js b/lib/server.js index 67cb7e6..53061c9 100644 --- a/lib/server.js +++ b/lib/server.js @@ -142,7 +142,7 @@ app._initializeHTTP = function() { this.use(util.allowCrossDomain); - this._app.get(this._options.path, function(req, res, next) { + this.get('/', function(req, res, next) { res.send(require('../app.json')); });