Skip to content

Commit b1b7a43

Browse files
committed
Fix: not publishing all image formats
1 parent eefd9c0 commit b1b7a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eleventy.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default async (eleventyConfig) => {
126126
);
127127
});
128128

129-
eleventyConfig.addPassthroughCopy("content/**/*.{jpg,png}");
129+
eleventyConfig.addPassthroughCopy("content/**/*.{jpg,png,webp}");
130130

131131
eleventyConfig.addFilter("readableDate", (dateObj, format, zone) => {
132132
return DateTime.fromJSDate(dateObj, { zone: zone || "utc" }).toFormat(

0 commit comments

Comments
 (0)