From e1341da5701783506065cc9686cb2e1939e0a1fa Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Fri, 11 Sep 2026 23:37:16 +0200 Subject: [PATCH] Add passthrough copy for Storm/Cloudy page images --- eleventy.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eleventy.config.js b/eleventy.config.js index e09e20a..417ab1b 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -28,6 +28,9 @@ module.exports = function (eleventyConfig) { // --- Passthrough copies --- + // Retro: Storm ST / Cloudy ST page images + eleventyConfig.addPassthroughCopy("retro/storm-cloudy/*.jpg"); + // Root-level shared assets eleventyConfig.addPassthroughCopy({ "shared/base.css": "shared-base.css" }); eleventyConfig.addPassthroughCopy({ "shared/favicon/hub.svg": "favicon.svg" });