diff --git a/src/app/(routes)/blog/posts/[postSlug]/page.tsx b/src/app/(routes)/blog/posts/[postSlug]/page.tsx
index d167468..f95b799 100644
--- a/src/app/(routes)/blog/posts/[postSlug]/page.tsx
+++ b/src/app/(routes)/blog/posts/[postSlug]/page.tsx
@@ -12,7 +12,9 @@ import { redirect } from "next/navigation";
async function fetchPostData(postSlug: string): Promise
{
const res = await fetch(
- `${process.env.NEXT_PUBLIC_BLOG_API_URL}/posts/${postSlug}`,
+ `${process.env.NEXT_PUBLIC_BLOG_API_URL}/posts/${postSlug}`, {
+ cache: process.env.NEXT_PUBLIC_BLOG_CACHE ? "force-cache" : "no-store",
+ }
);
if (res.status === 404) {