We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c72b702 commit 99f1255Copy full SHA for 99f1255
1 file changed
apps/next-blog/src/utils/generateRSSFeed.ts
@@ -3,8 +3,6 @@ import { getAllPosts } from './blog'
3
4
export async function generateRssFeed(type: 'rss' | 'atom' | 'json' = 'rss') {
5
const allPosts = (await getAllPosts()) ?? []
6
- console.log(allPosts, allPosts.length)
7
- // const site_url = process.env.VERCEL ? 'https://blog.trialanderror.org' : 'http://localhost:4200'
8
const site_url = 'https://blog.trialanderror.org'
9
10
const feedOptions: FeedOptions = {
0 commit comments