Implement flying toasters

This commit is contained in:
2025-07-29 16:08:47 -05:00
parent b444b59533
commit bf3d60fdc2
10 changed files with 583 additions and 1 deletions

View File

@ -194,7 +194,9 @@ export default async function (eleventyConfig) {
// Passthrough
eleventyConfig.addPassthroughCopy({ "./public/": "/" });
eleventyConfig
.addPassthroughCopy({ "./public/": "/" })
.addPassthroughCopy("./content/special/");
// Get the first `n` elements of a collection.
eleventyConfig.addFilter("head", (array, n) => {