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 revs all the assets in the public folder as expected but nothing happens to my HBS templates. Do I need to tell it to include .hbs files... or do I need to tell it to also be looking in the views folder... or both?
The text was updated successfully, but these errors were encountered:
I'm got an express app which is using Handlebars as template engine. My folder struture looks like this...
---- img
---- js
---- css
When I run the following
gulp.task('revAssets', function () { return gulp .src(['public/**']) .pipe(RevAll.revision()) .pipe(gulp.dest('public-rev')) .pipe(RevAll.manifestFile()) .pipe(gulp.dest('public-rev')); });
It revs all the assets in the public folder as expected but nothing happens to my HBS templates. Do I need to tell it to include .hbs files... or do I need to tell it to also be looking in the views folder... or both?
The text was updated successfully, but these errors were encountered: