From 6618372fb9822e9544174064c2af6867c2db508d Mon Sep 17 00:00:00 2001 From: Pekka Helesuo Date: Wed, 27 Nov 2024 16:35:24 +0200 Subject: [PATCH] fix blogs resource path --- app/blog/[slug]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/blog/[slug]/page.tsx b/app/blog/[slug]/page.tsx index bd75c58..6557539 100644 --- a/app/blog/[slug]/page.tsx +++ b/app/blog/[slug]/page.tsx @@ -30,7 +30,7 @@ export default async function SingleBlogPage({ // should we have some dynamic content at some point, it would reside here. // TODO: might wanna rethink the path/structure, if we wanna have excels or pdfs or whatnot in resources...? - const blogsResourcesPath = '/assets/blog/'; + const blogsResourcesPath = '/assets/blog/resources/'; const html = await getMarkdownContentAsHtml(post.path, blogsResourcesPath); return (