Created
October 27, 2018 17:31
-
-
Save sirdarthvader/61b2a931b5803cad160b97cae45f68a6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const exphbs = require('express-handlebars'); | |
// Handlebars Middleware | |
app.engine( | |
'handlebars', | |
exphbs({ | |
defaultLayout: 'main', | |
}) | |
); | |
app.set('view engine', 'handlebars'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment