Adding RSS to a Static Remix/React Router Site Without a CMS
Chris Child | 2026-04-12 | 4 min readComments
Here’s how I added a valid RSS feed to hardcopy.dev with no backend, no database, and no CMS — just Markdown, React Router, and a build step.
Here’s how I added a valid RSS feed to hardcopy.dev with no backend, no database, and no CMS — just Markdown, React Router, and a build step.
Efficient caching improves performance by reducing server load and speeding up page loads. In my Remix blog, I use `createHeadersFunction` to handle caching in a structured way. Here's how it works. ...