I'm using express-handlebars
package (version: 4.0.4
) and rendering my code like this:
app.get("/", (req, res) => {
res.render('index', { title: 'Snowy' }, {
allowProtoMethodsByDefault: true,
allowProtoPropertiesByDefault: true
});
})
But I am still getting same error. Any solution on Stackoverflow didn't work for me.