RSSURI deprecation escape

Saw this in the past and I ignored it when I glanced through the answer on this post by @bep. Updated to 0.25 and now when I try to generate new content I got

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

How can I specify a custom URI now. Do I just create a RSS to replace rssURI. Currently I have

rssuri: feed.xml

Something like this in your config should do it:

[outputs]
home = [ "HTML", "RSS" ]

[outputFormats]
[outputFormats.RSS]
mediatype = "application/rss"
baseName = "feed"
1 Like

Thanks @alexandros

1 Like