From 4113a4e6b1d9d5e64cc5b7ae38d4317b423f6b50 Mon Sep 17 00:00:00 2001 From: wgroeneveld Date: Fri, 2 Jul 2021 11:58:08 +0200 Subject: [PATCH] limit rss entries to 50 --- config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.toml b/config.toml index ca282e38..69242248 100644 --- a/config.toml +++ b/config.toml @@ -8,6 +8,9 @@ enableRobotsTXT = true # for .Lastmod to work with .GitInfo: --enableGitInfo https://gohugo.io/variables/git/ enableGitInfo = true +[services.rss] + limit = 50 + [taxonomies] tag = "tags" category = "categories"