An Eleventy plugin that brings the full capabilities of Sharp to your static sites, optimizing assets and improving website performance. Brought to you by CodeStitch!
1. Full Sharp integration, allowing for cropping, resizing, compressing, manipulating, and changing file types within your Eleventy project
2. Efficient caching mechanism to prevent regeneration of identical images within and between builds, both locally and when deployed to Netlify
3. Asynchronous processing - even when using non-asynchronous features (like Nunjucks Macros)
> [!IMPORTANT]
> This plugin relies on specific HTML comments to process images. If these comments are removed or altered by minification before this plugin runs, it will cause errors. To prevent this, make sure to add any HTML minification plugins _after_ this plugin in your Eleventy configuration file. This ensures that image processing occurs before any minification takes place.
> [!CAUTION]
> eleventy.js only accepts one module.exports. Make sure you paste the plugin snippet above inside the current module.exports.
3. For caching (Netlify use only), install Netlify's caching plugin:
`bash
npm install netlify-plugin-cache
`
4. Add caching configuration to netlify.toml in the root of your repository:
[plugins.inputs]
paths = [
"public/assets/images", # Processed images - adjust to match your outputDir
".cache" # Remote Assets
]
`
Configuration
The plugin accepts the following configuration options:
- urlPath: The prefix for generated image URLs in your built site
- outputDir: The directory where processed images should be saved
- cacheStrategy: Cache strategy to use ("auto", "content", or "stats"). Defaults to "auto"
- autoRotate: Some images have a mis-match between their EXIF orientation and how the image is rendered. When this config option is enabled (Defaults to true), automatically apply EXIF orientation correction only when needed (i.e. when orientation ≠ 1)
Usage
The plugin works by using the {% getUrl %} shortcode, supplying an image URL, and chaining filters that correspond to Sharp's transformation options:
In this example, we set up responsive image HTML with three elements. Each source generates an image from /assets/images/image.jpg, using the resize filter to crop the image to specific dimensions, before outputting the image in AVIF, WebP, or JPEG format.
The processed image is then cached to prevent unnecessary regeneration.
Each Sharp transformation can be used as a filter, with options passed as an object. For example, to adjust the image position during resizing:
Please, make sure each transformation option has a value associated with its key. Failing to do so will result in errors being thrown when building the site:
Simply, place this into your snippets file for the HTML language in VSCode. More information on installing and using the snippet can be found within the appropriate section on the YouTube tutorial video.
How It Works
To support environments where async features aren't allowed (like processing an image in a Nunjucks Macro), the shortcode doesn't directly generate the image. Instead, it creates a comment with a JSON configuration object. At the end of an Eleventy build, a Transform uses a regex to find all instances of these comments and process the images.
The configuration is hashed, and the file is renamed to include this hash. If an image path or its transformations change, the hash/filename will change, invalidating the cache. This works with netlify-plugin-cache to prevent reprocessing between builds in a live environment.