fix: Add 'src/_docs' to 11ty passthrough config

This commit is contained in:
2025-09-03 16:27:42 -05:00
parent 680d96c601
commit e0d613fc4e

View File

@@ -1,8 +1,8 @@
module.exports = function (eleventyConfig) { module.exports = function (eleventyConfig) {
// ✅ Pass through static assets to the root of output
eleventyConfig.addPassthroughCopy({ "src/images": "images" }); eleventyConfig.addPassthroughCopy({ "src/images": "images" });
eleventyConfig.addPassthroughCopy({ "src/styles": "styles" }); eleventyConfig.addPassthroughCopy({ "src/styles": "styles" });
eleventyConfig.addPassthroughCopy({ "src/scripts": "scripts" }); eleventyConfig.addPassthroughCopy({ "src/scripts": "scripts" });
eleventyConfig.addPassthroughCopy({ "src/_docs": "_docs" })
return { return {
dir: { dir: {