From daa5ee3281ad0a6740794cbf0d6cd4766488b4ff Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Thu, 19 Sep 2024 21:36:08 +0200 Subject: [PATCH] =?UTF-8?q?fix=20paginate=20=E2=86=92=20pagination.pagerSi?= =?UTF-8?q?ze?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit WARN deprecated: site config key paginate was deprecated in Hugo v0.128.0 and will be removed in a future release. Use pagination.pagerSize instead. --- config/_default/config.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/_default/config.toml b/config/_default/config.toml index 4e4b1f4..1ec25eb 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -7,11 +7,13 @@ defaultContentLanguage = "en" relativeURLs = false enableRobotsTXT = true -paginate = 10 summaryLength = 0 ignoreFiles = [ "\\.temp$" ] +[pagination] +pagerSize = 10 + # [permalinks] # #post = '/:sections[last]/:year-:month-:day-:slug/' # posts = '/:sections[last]/:year-:month-:day-:slug/' @@ -102,3 +104,4 @@ section = [ "HTML", ] page = [ "HTML" ] taxonomy = [ "HTML" ] #taxonomyTerm = [ "HTML" ] +