From a784c8d9f355d51eeaa4ef93369f87dc725ed8ec Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 14 Feb 2024 14:01:34 -0800 Subject: [PATCH] chore: 11ty image post --- ...setting-up-image-transforms-in-eleventy.md | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 src/posts/2024/setting-up-image-transforms-in-eleventy.md diff --git a/src/posts/2024/setting-up-image-transforms-in-eleventy.md b/src/posts/2024/setting-up-image-transforms-in-eleventy.md new file mode 100644 index 00000000..6264919e --- /dev/null +++ b/src/posts/2024/setting-up-image-transforms-in-eleventy.md @@ -0,0 +1,44 @@ +--- +date: '2024-02-14' +title: 'Setting up image transforms in Eleventy' +description: '' +tags: ['development', 'Eleventy', 'javascript'] +--- +Eleventy added a transform option to process images in Eleventy `v3.0.0-alpha.5` and `Image v4.0.1` so, naturally, I had to set it up on my site. If you don't want to read this post, you can check out [the full diff for the changes](https://github.com/cdransf/coryd.dev/commit/7e1597b36a07e9bd18c015c2bddd193e70799d6b). + +The process was relatively straightforward: + +1. I updated my `.eleventy.js` config: + ```javascript + // I'm using `esm` for my site, hence the import syntax + import { eleventyImageTransformPlugin } from '@11ty/eleventy-img' + + // this isn't necessary, but I'm using it to format the name of generated image files + import path from 'path'; + ... + eleventyConfig.addPlugin(eleventyImageTransformPlugin, { + extensions: 'html', + formats: ['avif', 'webp', 'jpeg'], // I'm generating `avif` files, the docs include just `webp` and `jpeg` + widths: [320, 570, 880, 1024, 1248], // I moved the explicit widths over from my old shortcode + defaultAttributes: { + loading: 'lazy', + decoding: 'async', + sizes: '90vw', // I set a default `sizes` attribute here — the plugin errored out without it and I didn't want to set it per image + }, + outputDir: './_site/assets/img/cache/', + urlPath: '/assets/img/cache/', + filenameFormat: (id, src, width, format) => { + const { name } = path.parse(src); + return `${name}-${width}w.${format}`; + }, + }); + ``` +2. I went through and updated every image on my site, which largely consisted of moving source, alt and classes into `` declarations. You can also override default attributes inline, as I did in my `media-grid.liquid` template (as I want the first grid of images to be set to `eager` and everything else to `lazy`: + {% raw %} + ```liquid + {{ alt }} + ``` + {% endraw %} +3. I removed my old shortcode at `shortcodes/index.js` and removed references in `.eleventy.js` + +And, there you have it — transformed image tags and no shortcode syntax. \ No newline at end of file