From cb49bb0ab58064b9d029179398fa594c92ae0385 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 21 Oct 2023 13:30:18 -0700 Subject: [PATCH] chore: move early return --- .eleventy.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index e77cf4e4..a94a7ff8 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -140,14 +140,13 @@ module.exports = function (eleventyConfig) { // image shortcode eleventyConfig.addShortcode('image', async function (src, alt, css, sizes, loading) { + if (!src) return let metadata = await Image(src, { widths: [75, 150, 300, 600], formats: ['webp'], urlPath: '/assets/img/cache/', outputDir: './_site/assets/img/cache/', }) - - if (!src) return let imageAttributes = { class: css,