Skip to content

Commit

Permalink
Fix pagination Hugo deprecation warning (#279)
Browse files Browse the repository at this point in the history
```
ERROR deprecated: site config key paginate was deprecated in Hugo v0.128.0 and will be removed in Hugo 0.143.0. Use pagination.pagerSize instead.
```

Signed-off-by: Juan Cruz Viotti <[email protected]>
  • Loading branch information
jviotti authored Jan 31, 2025
1 parent 4652c5c commit 05e5069
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config/_default/config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
languageCode = 'en-us'
title = 'Reference documentation for JSON Schema'
staticDir = [ './vendor/bootstrap-icons/font/fonts', './static' ]
paginate = 100000000

[pagination]
pagerSize = 100000000

[Params]
description = 'Reference documentation for JSON Schema'
Expand Down

0 comments on commit 05e5069

Please sign in to comment.