From 17e0709fd9c2ecc1427055f948662ca5f2420f8f Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Thu, 31 Jul 2025 20:12:03 +0200 Subject: [PATCH] fix: :wrench: remove eleventy image concurrency throttling No longer needed, as images are hosted externally and it slows down the build process --- eleventy.config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/eleventy.config.js b/eleventy.config.js index 79c3a8c..7a3b40e 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -24,8 +24,6 @@ import markdownItDeflist from 'markdown-it-deflist'; import markdownItFootnote from 'markdown-it-footnote'; import markdownItImageFigures from 'markdown-it-image-figures'; -Image.concurrency = 4; - const urlFormat = ({ src, width, format }) => { const baseUrl = `https://img.sebin-nyshkim.net/i`; const imgUuid = src.match(/\/([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/);