From 091d54b509ffd0a5e479d1b9a94352b7300db287 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Sat, 7 Mar 2026 17:33:16 +0100 Subject: [PATCH] fix: ignore theme/ directory in Eleventy to prevent duplicate permalink conflicts Co-Authored-By: Claude Sonnet 4.6 --- eleventy.config.js | 3 +++ 1 file changed, 3 insertions(+) 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");