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,