diff --git a/website/.config/eleventy.config.passthrough.js b/website/.config/eleventy.config.passthrough.js index df3d7b08..dc6adcb2 100644 --- a/website/.config/eleventy.config.passthrough.js +++ b/website/.config/eleventy.config.passthrough.js @@ -3,8 +3,8 @@ /** @param {import("@11ty/eleventy").UserConfig} config */ module.exports = function (config) { config.addPassthroughCopy({ ".website/static": "/" }); - config.addPassthroughCopy('./website/content/articles/**/*.{png, jpg, jpeg}'); - config.addPassthroughCopy('./website/content/blog/**/*.{png, jpg, jpeg}'); + config.addPassthroughCopy('./website/content/articles/**/*.{png, jpg, jpeg, gif}'); + config.addPassthroughCopy('./website/content/blog/**/*.{png, jpg, jpeg, gif}'); config.addPassthroughCopy({ "./website/content/public/images": "/images" }); config.addPassthroughCopy({ "./website/content/static/**/*": "/"}); config.addPassthroughCopy({ "./website/content/public/js/**/*.js": "/js" });