Created
August 27, 2025 16:09
-
-
Save zachleat/4492ad55a3d350182d20f8728b43a6a4 to your computer and use it in GitHub Desktop.
Revisions
-
zachleat revised this gist
Aug 27, 2025 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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; -
zachleat created this gist
Aug 27, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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, { // … }); };