Skip to content

v5.1.0

Choose a tag to compare

@github-actions github-actions released this 20 Sep 22:00
· 303 commits to main since this release
d3e8cb1

Minor Changes

  • d8813e4: Update Vento to v2.1.0

    Vento 2.1.0 adds a strict mode to fail compilation if a variable is undefined. Because this option changes the performance profile of Vento, this plugin keeps it disabled (the default).

    If you'd like to enable it, you can do so by setting it in the Vento config key when loading this plugin, like so:

    eleventyConfig.addPlugin(VentoPlugin, {
      ventoOptions: {
        strict: true,
      },
    });

    See Vento's (changelog) for more information.