export async function getServerSideProps()

in pages/contrib/good-first-bugs.js [9:20]


export async function getServerSideProps() {
  const res = await fetch(goodFirstBugsURL);
  const errorCode = res.ok ? false : res.status;
  const goodFirstBugsData = await res.json();

  return {
    props: {
      errorCode,
      goodFirstBugsData,
    },
  };
}