From a57ea0ab49dcfe9f6b105b9c28bd6cf9f6418781 Mon Sep 17 00:00:00 2001
From: hirokiwa <hirokifsys@gmail.com>
Date: Tue, 30 Apr 2024 19:32:00 +0900
Subject: [PATCH] Export OtherBlogs component with force dynamic

---
 src/app/post/[postId]/_components/OtherBlogs.tsx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/app/post/[postId]/_components/OtherBlogs.tsx b/src/app/post/[postId]/_components/OtherBlogs.tsx
index c16a1d6..fc23eac 100644
--- a/src/app/post/[postId]/_components/OtherBlogs.tsx
+++ b/src/app/post/[postId]/_components/OtherBlogs.tsx
@@ -1,3 +1,5 @@
+export const dynamic = 'force-static';
+
 import getAllBlogs from "@/functions/getAllBlogs";
 import Link from 'next/link';
 import SideBlogs from "./SideBlogs";