From f7e6f42216c3cbeab9add475a61bb407c6be3519 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 30 Nov 2023 13:12:45 +0100 Subject: refactor(pages): refine RSS feed * add favicon * add item categories * add item image * add item author * add item update date (it seems `date` is used as update date by Feed) * change copyright format * fix ESlint errors * fix atom and json links --- next.config.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'next.config.js') diff --git a/next.config.js b/next.config.js index 82f4fe4..fada5f4 100644 --- a/next.config.js +++ b/next.config.js @@ -115,6 +115,11 @@ const nextConfig = { destination: '/feed.xml', permanent: true, }, + { + source: '/feed/atom', + destination: '/atom.xml', + permanent: true, + }, ]; }, sassOptions: { -- cgit v1.2.3