From 68834f7880348f247674643f753a69609b6c6afc Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 28 Jun 2024 20:39:35 -0400 Subject: Hopefuly this will fix it? --- src/pages/blog/tags/[tag].astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/blog/tags/[tag].astro b/src/pages/blog/tags/[tag].astro index 6e32622..01bd03a 100644 --- a/src/pages/blog/tags/[tag].astro +++ b/src/pages/blog/tags/[tag].astro @@ -4,7 +4,7 @@ import {formatDate} from "../../../util"; import "../../../styles/cards.css"; export const prerender = true; export async function getStaticPaths() { - const allPosts = await Astro.glob('../../../content/blog/*.md'); + const allPosts = await Astro.glob('../../../content/blog/**/*.md'); let uniqueTags = []; if (allPosts) { -- cgit v1.2.3