From b4ba60cde113a6544ff9c98adb143edadd7c0bcc Mon Sep 17 00:00:00 2001 From: eunhak Date: Sun, 29 Sep 2024 17:39:48 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20vercel=20504=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=94=BD=EC=8A=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/community/[id]/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/community/[id]/index.tsx b/src/pages/community/[id]/index.tsx index e026d20..96e8c2a 100644 --- a/src/pages/community/[id]/index.tsx +++ b/src/pages/community/[id]/index.tsx @@ -21,7 +21,7 @@ const CommunityDetailPage = () => { export default CommunityDetailPage; // eslint-disable-next-line react-refresh/only-export-components -export async function getServerSideProps(context: GetServerSidePropsContext) { +export async function getStaticSideProps(context: GetServerSidePropsContext) { const { query, req } = context; const { cookie } = req.headers; const postId = query.id as string;