๋ชฉ๋กfallback (1)
๐ค ์์งlog ๐ค
[NEXTJS ] getStaticProps( ) ์ getStaticPaths( )
Next.js์ getStaticProps์ getStaticPaths api๋ฅผ ์ฌ์ฉํ๋ฉด static ํ์ด์ง๋ฅผ ์์ฑํ ์ ์๋ค. getStaticProps: ๋น๋ ์ ๋ฐ์ดํฐ๋ฅผ fetchํ์ฌ static ํ์ด์ง๋ฅผ ์์ฑ getStaticPaths: pages/**/[id].tsx ํํ์ ๋์ ๋ผ์ฐํ ํ์ด์ง ์ค, ๋น๋ ์์ staticํ๊ฒ ์์ฑํ ํ์ด์ง๋ฅผ ์ ํจ ๐ getStaticProps .tsx์์ export async function getStaticProps(context) ํํ๋ก ์ฌ์ฉ. context.params๋ก ๋์ ๋ผ์ฐํ ์ ๊ฒฝ๋ก ์ด๋ฆ์ ๊ฐ์ ธ์จ๋ค. pages/posts/[id].tsx ํ์ด์ง๋ฅผ /posts/123์ผ๋ก ์ ๊ทผํ๋ค๋ฉด context.params๋ { id: "123" }์ด ๋๋ค. { p..
๐ท Next JS
2023. 2. 24. 16:45