export async function getServerSideProps()

in pages/projects/latest.js [8:16]


export async function getServerSideProps(props) {
  const { year, quarter } = getCurrentQuarter();

  let queryParams = '';
  if (props.query) {
    queryParams = `?${queryString.stringify(props.query)}`;
  }

  const destination = `/projects/${year}/${quarter}/${queryParams}}`;