vercel 追加確認

life

Vercel 追加確認

画像を追加


一覧

  • a
  • b
    • c
  • d


コード

export const getStaticProps = async ({ params }): Promise<{
  props: Props
}> => {
  const res = await fetch(`${process.env.MICROCMS_ENDPOINT}blog/${params.id}`, {
    headers: {
      'X-API-KEY': process.env.MICROCMS_API_KEY
    },
  });
  const data = await res.json();
  return {
    props: {
      blog: data,
    },
  };
};