From e3e2a1cefc251fc134a6711bb0d2b65fbf9522d6 Mon Sep 17 00:00:00 2001 From: Graham Hall Date: Fri, 12 Apr 2024 22:29:08 -0400 Subject: [PATCH] ok one last shot --- src/pages/archive/[tag].astro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/archive/[tag].astro b/src/pages/archive/[tag].astro index d24940c..325a180 100644 --- a/src/pages/archive/[tag].astro +++ b/src/pages/archive/[tag].astro @@ -5,6 +5,8 @@ import { Tag as TagEnum } from '../../types'; import Layout from '@layouts/Layout.astro'; +export const prerender = false; + const { tag }: { tag?: TagEnum } = Astro.params; const page = Number.parseInt(Astro.url.searchParams.get('page') || '1');