diff --git a/src/pages/index.astro b/src/pages/index.astro index 8566720..5799874 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -16,7 +16,7 @@ export interface Frontmatter { tags: string[]; } -const posts = await Astro.glob("../pages/posts/*.md"); +const posts = await Astro.glob("../contents/*.md"); const sortedPosts = getSortedPosts(posts); --- @@ -89,11 +89,11 @@ const sortedPosts = getSortedPosts(posts);