dot-tpl-loader

dot template loader with query options for webpack

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
dot-tpl-loader
1.2.18 years ago8 years agoMinified + gzip package size for dot-tpl-loader in KB

Readme

Usage

var template = require("./file.tpl");

var html = template(data);
// or
var html = template.render(data);

Recommended config

module.exports = {
  module: {
    loaders: [
      { test: /\.tpl$/, loader: "dot-tpl?append=true" }
    ]
  }
};