From 927a1ca31300fce516505f6754cec8b798330c25 Mon Sep 17 00:00:00 2001 From: Bryant Gillespie Date: Mon, 9 Oct 2023 15:11:30 -0400 Subject: [PATCH] add rss feed to head for site (#82) --- nuxt.config.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/nuxt.config.ts b/nuxt.config.ts index 781e72d6..20976aba 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -72,6 +72,19 @@ export default defineNuxtConfig({ host: 'https://directus.io', }, + app: { + head: { + link: [ + { + rel: 'alternate', + type: 'application/atom+xml', + title: 'Directus RSS Feed', + href: '/rss.xml', + }, + ], + }, + }, + typescript: { typeCheck: true, },