From fb439c511236b890587460c163d8bca5e8ad05f6 Mon Sep 17 00:00:00 2001 From: Karl Eklund Date: Thu, 30 Aug 2012 03:26:33 +0200 Subject: [PATCH] Whitespace cleanup --- app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index f7be5c5..0ac08ff 100644 --- a/app.js +++ b/app.js @@ -5,7 +5,7 @@ var express = require('express'), // Configuration -app.configure(function(){ +app.configure(function() { app.set('views', __dirname + '/views'); app.set('view engine', 'jade'); app.use(express.bodyParser()); @@ -14,11 +14,11 @@ app.configure(function(){ app.use(express.static(__dirname + '/public')); }); -app.configure('development', function(){ +app.configure('development', function() { app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); }); -app.configure('production', function(){ +app.configure('production', function() { app.use(express.errorHandler()); });