From 88390c3916da0f9d5f318e7ee82e03415af823df Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 8 Apr 2026 00:30:29 +0000 Subject: [PATCH] Fix 11ty build error - ignore mobile.html template processing Issue: 11ty was trying to process mobile.html as Liquid template, failing on React JSX syntax. Fix: Added eleventyConfig.ignores to skip template processing, still copies file via passthrough. This allows the HTML/React file to deploy without build errors. --- .eleventy.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.eleventy.js b/.eleventy.js index d54fb84..d81c6d2 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -7,7 +7,11 @@ module.exports = function(eleventyConfig) { // Decap CMS admin panel eleventyConfig.addPassthroughCopy("admin"); - // Mobile task manager + // Mobile task manager - IGNORE, don't process as template + eleventyConfig.ignores.add("admin/mobile.html"); + eleventyConfig.addPassthroughCopy("admin/mobile.html"); + + // Tasks folder eleventyConfig.addPassthroughCopy("tasks"); return {