From a1f301bb89d022de5ccac0331e6c6ed4058edfa1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 10:38:06 +0000 Subject: [PATCH 1/2] Initial plan From aa809a411721dfc1a0878d5921d2dd64b0728061 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 10:53:36 +0000 Subject: [PATCH 2/2] Fix RSS and Atom feeds returning 404 by adding explicit prerender routes Co-authored-by: TechWatching <15186176+TechWatching@users.noreply.github.com> --- nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 2ff8a12..9e08f1b 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -69,7 +69,7 @@ export default defineNuxtConfig({ // Prerender all routes at build time for static hosting nitro: { prerender: { - routes: ['/'], + routes: ['/', '/feed.rss', '/feed.atom', '/dotnet_feed.rss', '/dotnet_feed.atom'], crawlLinks: true, failOnError: false }