handlebars-loader icon indicating copy to clipboard operation
handlebars-loader copied to clipboard

A handlebars template loader for webpack

Results 94 handlebars-loader issues
Sort by recently updated
recently updated
newest added

I tried your examples and I found that if tried to use loader in my project with one line template(without importing the template file has size - 15kb), the file...

I am using `handlebars-loader` with webpack: when my code cause an error, the dev tool console always show something like this: ![qq 20151119161021](https://cloud.githubusercontent.com/assets/7534668/11265575/46d01102-8ed8-11e5-9f38-cd2872711fd4.png) note that it said the error code...

I get the following error when using inlineRequires. `handlebars TypeError: str.indexOf is not a function` No helpers are causing the error. my loader: `{ test: /\.handlebars$/, loader:"handlebars-loader", query : {...

We have simple structure of templates in emblem like this: parent.emblem ``` .parent == child cntxt=cntxt ``` child.emblem (in the same folder as parent.emblem) ``` .child | #{cntxt.title} ``` In...

I'm trying to retrofit this loader into a large project with many handlebars templates & custom helpers. I've run into a few issues that I haven't been able to resolve...

Thanks for you awesome loader! I am using this and really like how it loads helpers and partials. Unfortunately, it is not supported in raw Handlebars, but I'd like to...

Hi, i use gulp-webpack and handlebars-loader , but find a problem : gulpfile.js: ``` var gulp = require('gulp'); var webpack = require('gulp-webpack'); var named = require('vinyl-named'); gulp.task('default', function() { return...

Hi, handlebars-loader can load nested partials by `{{> "partial/path"}}`. But I also use handlebars-layout to embed additional partials. How could i support those helpers by configuration? Is it possible? Cheers...

I know that webpack can use node as a target. All the examples seem to pack the templates for use in the browser. What I want to do is the...

Hello, I found that when I write a url just like 'http://www.google.com' in handlebars templates, it would come out an error.For example: < div class="test"> click me This handlebars will...