Skip to content

Commit

Permalink
Whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kek committed Aug 30, 2012
1 parent 6711bf3 commit fb439c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.js
Expand Up @@ -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());
Expand All @@ -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());
});

Expand Down

0 comments on commit fb439c5

Please sign in to comment.