From d357d6fec3198ecd8f1788307c935930cd99b5c1 Mon Sep 17 00:00:00 2001 From: dereklseitz Date: Tue, 9 Sep 2025 14:54:40 -0500 Subject: [PATCH] fix: Fix infinite loop in 11ty by adding 'eleventyConfig.watchIgnores.add("./src/_data/eventsJson.js");' to .eleventy.js --- .eleventy.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eleventy.js b/.eleventy.js index 12b77ca..28bf0d0 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -3,6 +3,7 @@ module.exports = function (eleventyConfig) { eleventyConfig.addPassthroughCopy({ "src/styles": "styles" }); eleventyConfig.addPassthroughCopy({ "src/scripts": "scripts" }); eleventyConfig.addPassthroughCopy({ "src/robots.txt": "robots.txt"}); + eleventyConfig.watchIgnores.add("./src/_data/eventsJson.js"); return { dir: { input: "src",