You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be possible to render a view by calling context.render('home'). koa-hbs should look for an index.hbs file in the /home folder, and use that template if found.
Currently, it is only possible to render a view with the above folder structure by using context.render('home/index').
The text was updated successfully, but these errors were encountered:
Assuming the following folder structure:
It should be possible to render a view by calling
context.render('home')
.koa-hbs
should look for anindex.hbs
file in the/home
folder, and use that template if found.Currently, it is only possible to render a view with the above folder structure by using
context.render('home/index')
.The text was updated successfully, but these errors were encountered: