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

A webpack loader for nunjucks.

Results 26 nunjucks-loader issues
Sort by recently updated
recently updated
newest added

[Html-Webpack-Plugin](https://github.com/ampedandwired/html-webpack-plugin) is just a `index.html` compiler. It can use with template like below. ``` javascript module: { loaders: [ { test: /\.hbs$/, loader: "handlebars" } ] }, plugins: [ new...

Loader generated modules should respect the same design principles like normal modules. Example: That’s a bad design: (not modular, global state, …) ``` javascript require("any-template-language-loader!./xyz.atl"); var html = anyTemplateLanguage.render("xyz"); ```...

wontfix

I follow the readme and when I try to paste the example in filters and extensions it gives me the error and i have the file in the right place...

``` (node:12084) DeprecationWarning: loaderUtils.parseQuery() received a non-string value which can be problematic, see https://github.com/webpack/loader-utils/issues/56 parseQuery() will be replaced with getOptions() in the next major version of loader-utils. at Object.parseQuery (E:\Coding\vapingdb\node_modules\nunjucks-loader\node_modules\loader-utils\index.js:78:3)...

I would like to be able to extract the rendered templates to static HTML files which can be passed to a backend developer to be integrated with the CMS. Is...

Actually, i want to achieve ``` njk file -> nunjucks-loader (with custom variables) -> html file ``` all of this happens in webpack config file. the output of HTML files...