📜  session undefined nextauth - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:12.785000             🧑  作者: Mango

代码示例1
// pages/index.js
import {getSession} from "next-auth/client"
...
export async function getServerSideProps(ctx) {
  const session = await getSession(ctx)
  return ({props: {session}})
}
...