Next.js 12 - getStaticProps, getStaticPaths
ยท
♠๏ธ Next.js 12
โ
getStaticPropsgetServerSideProps๋ ์ฌ์ฉ์๊ฐ ์์ฒญํ ๋๋ง๋ค ์คํ๋จ.getStaticProps๋ ๋น๋์์ ๋ฑ ํ ๋ฒ๋ง ์คํ๋๊ธฐ ๋๋ฌธ์ ์ต์ ๋ฐ์ดํฐ๊ฐ ๋ฐ์์ด ์ ๋จexport async function getStaticProps() { const blogPosts = readdirSync("./posts").map((file) => { const content = readFileSync(`./posts/${file}`, "utf-8"); const [slug, _] = file.split("."); return { ...matter(content).data, slug }; }); return { props: { posts: blogPosts.r..