push my changes to new repo

This commit is contained in:
N-Upchurch
2023-07-05 11:06:31 -05:00
parent 4f0a64d781
commit 5e0eb0cdcf
118 changed files with 1696 additions and 358 deletions

View File

@@ -14,7 +14,7 @@ module.exports = eleventyConfig => {
eleventyConfig.addAsyncShortcode("image", async function imageShortcode(src, alt, widths, sizes) {
// Full list of formats here: https://www.11ty.dev/docs/plugins/image/#output-formats
// Warning: Avif can be resource-intensive so take care!
let formats = ["avif", "webp", "auto"];
let formats = ["avif", "webp", "png", "auto"];
let file = relativeToInputPath(this.page.inputPath, src);
let metadata = await eleventyImage(file, {
widths: widths || ["auto"],