From 6dc157e55a6ea19c3fc8f2c2ebab5efef90c9a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20=E2=80=9CAd=C3=A6dra=E2=80=9D=20Hamel?= Date: Wed, 26 Jun 2024 23:58:21 +0200 Subject: [PATCH] Fix articles index --- lib/tasks/articles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/tasks/articles.ts b/lib/tasks/articles.ts index 4e528e2..429d0bb 100644 --- a/lib/tasks/articles.ts +++ b/lib/tasks/articles.ts @@ -117,6 +117,7 @@ export async function articles(): Promise { file.path = join(slug, "index.html"); file.contents = renderDocument(content); + articles.push(article); return file; }), then(dest("dist")),