Skip to content

Instantly share code, notes, and snippets.

@zachleat
Created August 27, 2025 16:09
Show Gist options
  • Select an option

  • Save zachleat/4492ad55a3d350182d20f8728b43a6a4 to your computer and use it in GitHub Desktop.

Select an option

Save zachleat/4492ad55a3d350182d20f8728b43a6a4 to your computer and use it in GitHub Desktop.

Revisions

  1. zachleat revised this gist Aug 27, 2025. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions eleventy.config.js
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,6 @@
    // Using the command: DEBUG=Eleventy:Image* npx @11ty/eleventy
    // will report the concurrency value used.

    import eleventyImage, { eleventyImageTransformPlugin } from "@11ty/eleventy-img";

    eleventyImage.concurrency = 1;
  2. zachleat created this gist Aug 27, 2025.
    9 changes: 9 additions & 0 deletions eleventy.config.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    import eleventyImage, { eleventyImageTransformPlugin } from "@11ty/eleventy-img";

    eleventyImage.concurrency = 1;

    export default async function (eleventyConfig) {
    eleventyConfig.addPlugin(eleventyImageTransformPlugin, {
    // …
    });
    };