11ty / eleventy-base-blog

A starter repository for a blog web site using the Eleventy static site generator.
https://eleventy-base-blog.netlify.app/
MIT License
1.19k stars 609 forks source link

How to put RSS feed at /feed ? #159

Open spaceninja opened 10 months ago

spaceninja commented 10 months ago

Love this starter, but I noticed it outputs the RSS feed to /feed/feed.xml — In order to avoid breaking my previous RSS feed URL, I'd like to serve this from /feed/ instead, but I'm unable to see a way to make this happen. Any suggestions?

bobmonsour commented 10 months ago

Change the permalink in the feed.njk file to simply be /feed.xml

spaceninja commented 10 months ago

Then the feed will be at /feed.xml, not /feed/, which is what I'm looking to match.

djwebdroid commented 8 months ago

Yup:

permalink: /feed.xml

If that worked for you you could close this issue .. :)

Cheers.