いままでHugoのRSS feedのURIはconfig.tomlで、

rssuri: feed.xml

のように指定していたのですが、netlifyのdeploy logを見ていたら、

WARNING: Site config's rssURI is deprecated and will be removed in a future release. Set baseName in outputFormats.RSS.

と出ていた。調べたところ、

[outputs]
home = [ "HTML", "RSS" ]
 
[outputFormats]
[outputFormats.RSS]
mediatype = "application/rss"
baseName = "feed"

のようになったらしい。