ejs-webpack-compile-loader

npm i -S ejs-webpack-compile-loader

Usage no npm install needed!

<script type="module">
  import ejsWebpackCompileLoader from 'https://cdn.skypack.dev/ejs-webpack-compile-loader';
</script>

README

EJS Weppack Compile Loader

⬇️️ Installation

npm i -S ejs-webpack-compile-loader

📋 Example

const template = require("./file.ejs");
// => returns the template function compiled with ejs templating engine.
 
// And then use it somewhere in your code
await template(data) // Pass object with data
 
// Child Templates
// path is relative to where webpack is being run
<%- include templates/child -%>

🗎 Documentation

Documentation: Using loaders

EJS Options