github-actions
released this
11 Oct 12:16
·
3 commits
to main
since this release
Major Changes
-
f779095: Removes
EleventyRenderPlugin
from custom-elements-manifest 11ty plugin config. Ensure you add it yourself.Before:
module.exports = function (eleventyConfig) { eleventyConfig.addPlugin(CustomElementsManifestPlugin); };
After:
import { EleventyRenderPlugin } from "@11ty/eleventy"; // 3.0.0 only export default function (eleventyConfig) { eleventyConfig.addPlugin(CustomElementsManifestPlugin); eleventyConfig.addPlugin(EleventyRenderPlugin); }