Skip to content

Commit

Permalink
Update 11ty config to include gif's
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDarksideJ authored Aug 17, 2024
1 parent 80c9869 commit e6460ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/.config/eleventy.config.passthrough.js
Original file line number Diff line number Diff line change
Expand Up @@ -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" });
Expand Down

0 comments on commit e6460ac

Please sign in to comment.