Obtener accesorios del lado del servidor

export async function getServerSideProps(context) {
  return {
    props: {}, // will be passed to the page component as props
  }
}
Funny Fox