zachleat.com is one of the many independent Mastodon servers you can use to participate in the fediverse.

Server stats:

1
active users

Zach Leatherman :11ty:

@chris_hayes apologies if that was too jargon-y, basically I mean this example in Eleventy 3.0: 11ty.dev/docs/plugins/render/#

would need to use a ESM config (change your require to import) or your CJS config would need to be this instead:

```
module.exports = async function(eleventyConfig) {
const { EleventyRenderPlugin } = await import("@11ty/eleventy");
eleventyConfig.addPlugin(EleventyRenderPlugin);
};
```

EleventyRenderA docs page for Eleventy v2.0.1, a simpler static site generator.