0

ローカルホストで動作しますが、ビルド時にエラーをスローします getStaticProps() にロジックを書き込もうとしましたが、( const res = await model.find(); const data = await res.json() ) ---> その res もスローします.json() は関数ではありません

export default function Index({ data }) {
  return <div>{data}</div>;
}

export async function getStaticProps() {
  const response = await fetch("http://127.0.0.1:8000/data");
  const data = await response.json();
  return { props: { data } };
}
4

0 に答える 0