I ask my probleme here
But after I use the proposed solution I had this error:
Error: ENOENT: no such file or directory, open \'E:\\test\\views\\layout
This is due to express-handlebars's default path resolving. Add layout: false to disable it.
express-handlebars
layout: false
app.get('/', (req, res) =>{ res.render('index.hbs', {layout: false}); });
Or defaultLayout: null
defaultLayout: null
app.engine( "hbs", exphbs({ defaultLayout: null , })