From bfeebe760ababec93301ccd32fa76f456a932f25 Mon Sep 17 00:00:00 2001 From: Aaron Lifton Date: Sun, 9 Jun 2024 01:00:26 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(tags):=20prerender=20index?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/tags/index.astro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/tags/index.astro b/src/pages/tags/index.astro index bc0abe5..1fccd0a 100644 --- a/src/pages/tags/index.astro +++ b/src/pages/tags/index.astro @@ -11,6 +11,8 @@ import { getTags } from "~services/api"; // const data = filteredPosts.map((post) => post.data.tags); // const allTags = unique(data.flat()); const allTags = await getTags(); + +export const prerender = true; ---