diff --git a/eleventy.config.js b/eleventy.config.js index 1f7753b..8cb83e6 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -48,6 +48,9 @@ export default function (eleventyConfig) { // (content/ is in .gitignore because it's a symlink, but we need to process it) eleventyConfig.setUseGitIgnore(false); + // Passthrough copy for OG images + eleventyConfig.addPassthroughCopy({ ".cache/og": "images/og" }); + // Ignore output directory (prevents re-processing generated files via symlink) eleventyConfig.ignores.add("_site"); eleventyConfig.ignores.add("_site/**");