20 lines
538 B
TypeScript
20 lines
538 B
TypeScript
import type { GetServerSidePropsContext } from "next";
|
|
|
|
import { ssrInit } from "@server/lib/ssr";
|
|
|
|
export async function getServerSideProps(context: GetServerSidePropsContext) {
|
|
const ssr = await ssrInit(context);
|
|
// Deleting old cookie manually, remove this code after all existing cookies have expired
|
|
context.res?.setHeader(
|
|
"Set-Cookie",
|
|
"next-auth.session-token=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;"
|
|
);
|
|
|
|
return {
|
|
props: {
|
|
trpcState: ssr.dehydrate(),
|
|
query: context.query,
|
|
},
|
|
};
|
|
}
|