From a07f57649d760c6faba9ace57862fa5c3a6b7a84 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Sat, 7 Mar 2026 19:59:28 +0100 Subject: [PATCH] Fix publication postTypes config shape --- indiekit.config.mjs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/indiekit.config.mjs b/indiekit.config.mjs index 134d52bc..6c6e9566 100644 --- a/indiekit.config.mjs +++ b/indiekit.config.mjs @@ -30,32 +30,29 @@ export default { }, publication: { me: "https://blog.giersig.eu", - postTypes: [ - { - type: "article", + postTypes: { + article: { name: "Artikel", post: { path: "src/posts/{slug}.md", url: "https://blog.giersig.eu/posts/{slug}/", }, }, - { - type: "note", + note: { name: "Notiz", post: { path: "src/notes/{slug}.md", url: "https://blog.giersig.eu/notes/{slug}/", }, }, - { - type: "bookmark", + bookmark: { name: "Lesezeichen", post: { path: "src/bookmarks/{slug}.md", url: "https://blog.giersig.eu/bookmarks/{slug}/", }, }, - ], + }, }, plugins: [