Hugoのビルド時にauthorの警告が出る

The author key in site configuration is deprecated. Use params.author.name instead

* 本ページはプロモーションが含まれています

hugoでビルド時に下記のエラーが出るようになった

Start building sites …
hugo v0.122.0-b9a03bd59d5f71a529acb3e33f995e0ef332b3aa+extended darwin/amd64 BuildDate=2024-01-26T15:54:24Z VendorInfo=brew

WARN  The author key in site configuration is deprecated. Use params.author.name instead.

どうやら、0.120のバージョンから警告が出るようになったらしい

config.toml内を修正 

  • 変更前
[params]
  author = "Hugo"
  • 変更後
[params]
  author.name = "Hugo"

[params]内にauthorがなければ追加する