export async function getServerSideProps()

in edu-analytics-ui/src/pages/index.tsx [20:26]


export async function getServerSideProps({ locale }: { locale: string }) {
  return {
    props: {
      ...(await serverSideTranslations(locale, ["common", "home"])),
    },
  };
}