From e0d613fc4ee3900ff5ff58890af32d3e57216f62 Mon Sep 17 00:00:00 2001 From: dereklseitz Date: Wed, 3 Sep 2025 16:27:42 -0500 Subject: [PATCH] fix: Add 'src/_docs' to 11ty passthrough config --- .eleventy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eleventy.js b/.eleventy.js index 79197dd..3f4c5ab 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -1,8 +1,8 @@ module.exports = function (eleventyConfig) { - // ✅ Pass through static assets to the root of output eleventyConfig.addPassthroughCopy({ "src/images": "images" }); eleventyConfig.addPassthroughCopy({ "src/styles": "styles" }); eleventyConfig.addPassthroughCopy({ "src/scripts": "scripts" }); + eleventyConfig.addPassthroughCopy({ "src/_docs": "_docs" }) return { dir: {