From d3614732e56e84675366ae6cc2f4e48f7eb66297 Mon Sep 17 00:00:00 2001 From: gouz7514 Date: Tue, 30 Jul 2024 23:34:00 +0900 Subject: [PATCH] =?UTF-8?q?[#25]=20docs:=20static-site-generatino=20?= =?UTF-8?q?=EB=B2=88=EC=97=AD=20*=20docs:=20=EB=88=84=EB=9D=BD=20=EB=B6=80?= =?UTF-8?q?=EB=B6=84=20=EB=B2=88=EC=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../rendering/static-site-generation.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/pages/building-your-application/rendering/static-site-generation.mdx b/pages/docs/pages/building-your-application/rendering/static-site-generation.mdx index 83d0ba0..7745b10 100644 --- a/pages/docs/pages/building-your-application/rendering/static-site-generation.mdx +++ b/pages/docs/pages/building-your-application/rendering/static-site-generation.mdx @@ -115,7 +115,7 @@ Next.js는 **동적 경로**를 사용하여 페이지를 생성할 수 있습 ```jsx // 이 함수는 빌드 타임에 호출됩니다 export async function getStaticPaths() { - // Call an external API endpoint to get posts + // posts를 가져오기 위해 외부 API 엔드포인트를 호출합니다 const res = await fetch('https://.../posts') const posts = await res.json()