Skip to content

Commit d69ed1d

Browse files
authored
Merge pull request #109 from kapishdima/fix/rss
Fix RSS feed
2 parents 10c7afd + 134b65d commit d69ed1d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app/rss.xml/route.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ export async function GET(request: NextRequest) {
88

99
const rssXml = await generateRegistryRssFeed({
1010
baseUrl,
11+
componentsUrl: "/docs/components",
12+
excludeItemTypes: ["registry:block", "registry:style", "registry:lib"],
1113
rss: {
1214
title: "@retroui",
1315
description: "Subscribe to @retroui updates",
@@ -16,7 +18,7 @@ export async function GET(request: NextRequest) {
1618
},
1719
github: {
1820
owner: "Logging-Studio",
19-
repo: "https://github.com/Logging-Studio/RetroUI",
21+
repo: "RetroUI",
2022
token: process.env.GITHUB_TOKEN,
2123
},
2224
});
@@ -35,4 +37,4 @@ export async function GET(request: NextRequest) {
3537
"public, max-age=3600, s-maxage=3600, stale-while-revalidate=86400",
3638
},
3739
});
38-
}
40+
}

bun.lockb

49.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)