Skip to content

Commit

Permalink
fix rss path
Browse files Browse the repository at this point in the history
  • Loading branch information
BcRikko committed Dec 4, 2024
1 parent ca5d716 commit 9faf4b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/rss.xml.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ export async function GET(context) {
site: context.site,
trailingSlash: true,
items: await pagesGlobToRssItems(
import.meta.glob('./posts/**/*.{md,mdx}')
// import.meta.glob('./posts/**/*.{md,mdx}')
import.meta.glob('./posts/**/[!_]*.{md,mdx}')
),
})
}

0 comments on commit 9faf4b5

Please sign in to comment.