my-app
    Preparing search index...

    Function getServerSideProps

    • Parameters

      • context: GetServerSidePropsContext

      Returns Promise<
          | {
              props?: undefined;
              redirect: { destination: string; permanent: boolean };
          }
          | {
              props: {
                  session: | {
                      expires: string;
                      user: {
                          email: string
                          | null;
                          id: string;
                          image: string | null;
                          name: string;
                      };
                  }
                  | null;
              };
              redirect?: undefined;
          },
      >