Fix rss.xml.js field: publishDate to pubDate

This commit is contained in:
prototypa
2022-12-24 08:45:02 -05:00
parent 0f2ed8e702
commit b9b734adc7

View File

@ -23,7 +23,7 @@ export const get = async () => {
link: getPermalink(post.slug, 'post'), link: getPermalink(post.slug, 'post'),
title: post.title, title: post.title,
description: post.description, description: post.description,
publishDate: post.publishDate, pubDate: post.publishDate,
})), })),
}); });
}; };