From 498da21ec0188b72be62e59db7c7870a60e08640 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:31:36 +0100 Subject: [PATCH] fix: add robots.txt to Eleventy passthrough copy Was present in the repo but not copied to _site/ during build, so it got wiped on every deploy. Co-Authored-By: Claude Sonnet 4.6 --- eleventy.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eleventy.config.js b/eleventy.config.js index 9e49bc9..613982c 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -510,6 +510,7 @@ export default function (eleventyConfig) { eleventyConfig.addPassthroughCopy("images"); eleventyConfig.addPassthroughCopy("js"); eleventyConfig.addPassthroughCopy("favicon.ico"); + eleventyConfig.addPassthroughCopy("robots.txt"); eleventyConfig.addPassthroughCopy("interactive"); eleventyConfig.addPassthroughCopy({ ".cache/og": "og" });