Entry

Implementing eleventy-auto-cache-buster

Solution

const eleventyAutoCacheBuster = require("eleventy-auto-cache-buster");
// Alternatively, you can use ESM
import eleventyAutoCacheBuster from "eleventy-auto-cache-buster";

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