Skip to content

Instantly share code, notes, and snippets.

@wehrhaus
Created April 24, 2014 01:52
Show Gist options
  • Save wehrhaus/11238856 to your computer and use it in GitHub Desktop.
Save wehrhaus/11238856 to your computer and use it in GitHub Desktop.
Render `pretty` Jade templates via Express v3.x using 'pretty' flag
if (app.get('env') === 'development') {
app.use(function(req, res, next) {
app.locals.pretty = true;
next();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment