aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-06-28 20:39:35 -0400
committerAndrew Lee <alee14498@protonmail.com>2024-06-28 20:39:35 -0400
commit68834f7880348f247674643f753a69609b6c6afc (patch)
tree1b0d7bf9b070d220aeefe116eff0569d40380cbd /src/pages
parent64cd7fc83d43a0ad7db1b51214291736bd245b44 (diff)
downloadpersonal-website-68834f7880348f247674643f753a69609b6c6afc.tar.gz
personal-website-68834f7880348f247674643f753a69609b6c6afc.tar.bz2
personal-website-68834f7880348f247674643f753a69609b6c6afc.zip
Hopefuly this will fix it?
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/blog/tags/[tag].astro2
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) {