Skip to content

Commit

Permalink
moved executable css middleware lower
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed May 21, 2012
1 parent fcf2687 commit 58cfd60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/express
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ var app = [
, ' app.set(\'views\', __dirname + \'/views\');'
, ' app.set(\'view engine\', \':TEMPLATE\');'
, ' app.use(express.favicon());'
, ' app.use(express.logger(\'dev\'));{css}'
, ' app.use(express.logger(\'dev\'));'
, ' app.use(express.bodyParser());'
, ' app.use(express.methodOverride());{sess}'
, ' app.use(app.router);'
, ' app.use(app.router);{css}'

This comment has been minimized.

Copy link
@mildsunrise

mildsunrise Aug 3, 2012

CSS (Stylus/Less) middleware is still used in development and production.

, ' app.use(express.static(__dirname + \'/public\'));'
, '});'
, ''
Expand Down

0 comments on commit 58cfd60

Please sign in to comment.