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

Hello, I have a simple issue - when packaging with webpack and deploying to a static host (like S3), do we need to bundle runtime separately? I am including "handlebars"...

Is there a way to integrate express-handlebars and webpack using handlebars-loader? My primary issue is with the way main layout is defined on express-handlebars.

It's a bit weird. I want to customize a helper to generate `` easily. There is a node module called "set-head" which can help me generate ``, ``, `` from...

I'm using **`handlebars-loader`** and I get this error from the peer dependency **`handlebars`** package. I don't understand what I'm doing wrong and why I see the error. ``` text ERROR...

Hi, I am using Handlebars as template engine in my application and using Webpack to bundle stuff. I am loading templates dynamically(by using `system.import`) and the issue is the template...

Hi Everyone ! Thanks for this awesome project, that deserves to be migrated to webpack 2. also you might like :+1: in **package.json** ` "build:prod": "webpack app.js -p"` The following...

Hi I hope it's ok that I'm asking here because I have little hope of getting help on StackOverflow for this specific of a question. I checked the [helpers example](https://github.com/altano/handlebars-loader/blob/master/examples/helperDirs/book-listing.handlebars)...

For some reason, I can't get `#each` to work with arrays or objects. ```js Handlebars.registerHelper({ actions: [1,2,3,4] }); ``` and ```html {{actions}} {{#each actions}} {{this}} {{/each}} ``` It will print...

For my specific use-case, handlebars-loader is used strictly at build time. Using HtmlWebpackPlugin, an index.handlebars is processed into index.html. After that point my app's templating engine can handle the rest...