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 makes unable to render templates on some circumstances
As far as i can see this: var tplPath = path.join(viewPath, tpl + this.extname);
should be changed to this var tplPath = path.join(viewPath, tpl + '.' +this.extname);
No idea of colateral implications, but it's disallowing me to use koa-hbs
The text was updated successfully, but these errors were encountered:
under what circumstances are you unable to render? please provide some code examples. koa-hbs has been around a while, and this is the first instance of the issue I've seen.
It makes unable to render templates on some circumstances
As far as i can see this:
var tplPath = path.join(viewPath, tpl + this.extname);
should be changed to this
var tplPath = path.join(viewPath, tpl + '.' +this.extname);
No idea of colateral implications, but it's disallowing me to use koa-hbs
The text was updated successfully, but these errors were encountered: