getStaticProps

Fetch data at build time for static generation.

Snippet:

export async function getStaticProps() { return { props: { data } }; }

Example:

export async function getStaticProps() { const res = await fetch("url"); const data = await res.json(); return { props: { data } }; }