diff --git a/eleventy.config.js b/eleventy.config.js index 64954c6..5442a7a 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -43,6 +43,9 @@ export default function (eleventyConfig) { // Ignore interactive assets (served via passthrough copy, not processed as templates) eleventyConfig.ignores.add("interactive"); eleventyConfig.ignores.add("interactive/**"); + // Ignore theme/ subdirectory (contains theme source files, not site content) + eleventyConfig.ignores.add("theme"); + eleventyConfig.ignores.add("theme/**"); // Configure watch targets to exclude output directory eleventyConfig.watchIgnores.add("_site");