We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71ec5ce commit 959ec76Copy full SHA for 959ec76
modules/blog.ts
@@ -88,7 +88,7 @@ function resolveAuthors(authors: Author[], avatarMap: Map<string, string>): Reso
88
* Resolves Bluesky avatars at build time.
89
*/
90
async function loadBlogPosts(blogDir: string, imagesDir: string): Promise<BlogPostFrontmatter[]> {
91
- const files = await Array.fromAsync(glob(join(blogDir, '*.md')))
+ const files = await Array.fromAsync(glob(join(blogDir, '*.md').replace(/\\/g, '/')))
92
93
// First pass: extract raw frontmatter and collect all Bluesky handles
94
const rawPosts: Array<{ frontmatter: Record<string, unknown> }> = []
0 commit comments