perf: ignore docs/, .superpowers/, .interface-design/ from Eleventy build
Build & Deploy / build-and-deploy (push) Successful in 1m58s

This commit is contained in:
svemagie
2026-05-11 09:42:45 +02:00
parent 8cb9ea948b
commit 46507a7f1b
+7
View File
@@ -88,6 +88,13 @@ export default function (eleventyConfig) {
// Ignore theme/ subdirectory (contains theme source files, not site content)
eleventyConfig.ignores.add("theme");
eleventyConfig.ignores.add("theme/**");
// Ignore internal planning docs — not public site content
eleventyConfig.ignores.add("docs");
eleventyConfig.ignores.add("docs/**");
eleventyConfig.ignores.add(".superpowers");
eleventyConfig.ignores.add(".superpowers/**");
eleventyConfig.ignores.add(".interface-design");
eleventyConfig.ignores.add(".interface-design/**");
// Configure watch targets to exclude output directory
eleventyConfig.watchIgnores.add("_site");