From aac5b2647ddcbc708b4ca34c1513f2c77f4174f4 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 10 Jan 2024 15:45:36 -0800 Subject: [PATCH] patch: don't fail builds over images --- config/shortcodes/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/config/shortcodes/index.js b/config/shortcodes/index.js index 7275c646..cbe16de0 100644 --- a/config/shortcodes/index.js +++ b/config/shortcodes/index.js @@ -10,6 +10,7 @@ export const img = async ( formats = ['webp', 'jpeg'], sizes = '100vw' ) => { + if (!src) return; const imageMetadata = await Image(src, { widths: [...widths, null], formats: [...formats, null],