fix: og passthrough
Some checks failed
Build & Deploy / build-and-deploy (push) Failing after 20s

This commit is contained in:
svemagie
2026-03-31 19:54:40 +02:00
parent d701148dbf
commit cbd5f1b994

View File

@@ -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/**");