Skip to content

Commit

Permalink
Makes sure images get copied through.
Browse files Browse the repository at this point in the history
  • Loading branch information
hcayless committed Sep 17, 2024
1 parent df83f14 commit 24fb263
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy({ "src/assets/css/*.css": "css" });
eleventyConfig.addPassthroughCopy({ "src/assets/img": "img" });
eleventyConfig.addPassthroughCopy("src/**/*.var");
eleventyConfig.addPassthroughCopy("src/**/*.png");
eleventyConfig.addPassthroughCopy("src/**/*.ai");
eleventyConfig.addPassthroughCopy("src/**/*.svg");
eleventyConfig.addPassthroughCopy("src/**/*.eps");
eleventyConfig.addPassthroughCopy({ "src/_data/*.json": "data" });
eleventyConfig.addPassthroughCopy({ "node_modules/bootstrap-icons/font/fonts/*.*": "fonts" });
eleventyConfig.addPlugin(eleventyNavigationPlugin);
Expand Down

0 comments on commit 24fb263

Please sign in to comment.