From a7f71895836b5ced9623bd89b1acd72be5747716 Mon Sep 17 00:00:00 2001 From: ninjack-dev <84806918+ninjack-dev@users.noreply.github.com> Date: Thu, 16 Jul 2026 11:31:47 -0700 Subject: [PATCH] Fix publishDate not being added to RSS entries --- .vuepress/config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vuepress/config.js b/.vuepress/config.js index bb256454d1c..71cec3c7201 100755 --- a/.vuepress/config.js +++ b/.vuepress/config.js @@ -279,6 +279,9 @@ export default defineUserConfig({ frontmatter.feed === true || filePathRelative?.indexOf('blog/') >= 0 ); }, + getter: { + publishDate: (page) => new Date(page.date), + }, sorter: (a, b) => { const pathDateA = new Date( a.path.replace('/blog/', '').substring(0, 10),