// You can use any data fetching library const res = await fetch('https://.../posts'); const posts = await res.json(); // By returning { props: { posts } }, the ...
確定! 回上一頁