Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 360 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 360 Bytes

eleventy-plugin-rev

This Eleventy plugin provides utility functions to make your assets revisioned.

Install

npm install eleventy-plugin-rev

Add it to Eleventy config file (usually .eleventy.js)

const rev = require("eleventy-plugin-rev");

module.exports = function(eleventyConfig) {
  eleventyConfig.addPlugin(rev);
};