EJS loader for webpack. Uses ejs function to compile templates.
To use EJS by mde use 2.x branch and 2.x.x versions.
*** Forked from ejs-file-loader ***
npm install --save-dev ejs-template-loader
var template = require("ejs-template-loader!./file.ejt");
// => returns the template function compiled with ejs templating engine.
// And then use it somewhere in your code
template(data) // Pass object with data
// Child Templates
// path is relative to where webpack is being run
<%- include templates/child -%>
Following options can be specified in query:
beautify
— enable or disable uglify-js beautify of template ast
compileDebug
— see ejs compileDebug option
htmlmin
— see htmlminify section
const webpackConfigs = {
module: {
loaders: [
{test: /\.ejs$/, loader: 'ejs-file-loader?htmlmin'} // enable here
]
},
'ejs-template-loader': {
'htmlmin': true, // or enable here
'htmlminOptions': {
removeComments: true
}
}
};