From 91c45f84b950492812bdb23e6e76bd50297fd2e8 Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Tue, 24 Jan 2023 08:10:42 -0600 Subject: [PATCH] A few more content image types --- eleventy.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eleventy.config.js b/eleventy.config.js index 22d1585..3a2543f 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -17,8 +17,8 @@ module.exports = function(eleventyConfig) { // Run Eleventy when these files change: // https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets - // Process content images to the image pipeline. - eleventyConfig.addWatchTarget("content/**/*.{png,jpeg}"); + // Watch content images for the image pipeline. + eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpeg}"); // App plugins eleventyConfig.addPlugin(require("./eleventy.config.drafts.js"));