export async function getServerSideProps()

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


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

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