diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-06-28 20:39:35 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-06-28 20:39:35 -0400 |
| commit | 68834f7880348f247674643f753a69609b6c6afc (patch) | |
| tree | 1b0d7bf9b070d220aeefe116eff0569d40380cbd | |
| parent | 64cd7fc83d43a0ad7db1b51214291736bd245b44 (diff) | |
| download | personal-website-68834f7880348f247674643f753a69609b6c6afc.tar.gz personal-website-68834f7880348f247674643f753a69609b6c6afc.tar.bz2 personal-website-68834f7880348f247674643f753a69609b6c6afc.zip | |
Hopefuly this will fix it?
| -rw-r--r-- | src/pages/blog/tags/[tag].astro | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
