perf: ignore docs/, .superpowers/, .interface-design/ from Eleventy build
Build & Deploy / build-and-deploy (push) Successful in 1m58s
Build & Deploy / build-and-deploy (push) Successful in 1m58s
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user