fix: enable archive routing and dynamic volume numbering
All checks were successful
Deploy to Cloudflare Pages / publish (push) Successful in 43s

This commit is contained in:
Dirty REdOG 2026-07-04 18:56:07 -05:00
parent 3ff0f527f5
commit f74772420b
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,4 @@
{
"layout": "edition",
"volume": 1
}

View file

@ -42,6 +42,10 @@ module.exports = function(eleventyConfig) {
return roman; return roman;
}); });
eleventyConfig.addCollection("editions", function(collectionApi) {
return collectionApi.getFilteredByGlob("content/editions/*/index.md");
});
// 5. Directory configuration (integrated into the same function) // 5. Directory configuration (integrated into the same function)
return { return {
dir: { dir: {