From 31c99021c83211bc34ca673a7cb59fc2d0a66ba1 Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Sun, 20 Apr 2025 11:27:27 +0200 Subject: [PATCH] build: :wrench: limit eleventy-image concurrency Satori times out if it has to wait too long for an image to process and leaves the open graph image broken/incomplete. Limiting concurrent processes for the eleventy-image plugin prevents this. --- eleventy.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eleventy.config.js b/eleventy.config.js index 63b8b02..3102604 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -23,6 +23,7 @@ import markdownItFootnote from 'markdown-it-footnote'; import markdownItImageFigures from 'markdown-it-image-figures'; const MARKDOWNIT_OPTIONS = { html: true, linkify: true, typographer: true }; +Image.concurrency = 4; export default async function (eleventyConfig) { eleventyConfig.addPassthroughCopy('./src/css/prism.css');