@chris_hayes apologies if that was too jargon-y, basically I mean this example in Eleventy 3.0: https://www.11ty.dev/docs/plugins/render/#installation
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);
};
```