Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 45x 5x 1x | import { NextPageContext } from "next";
import {
ACCESS_TOKEN_COOKIE,
EXPIRE_TOKEN_COOKIE,
REFRESH_TOKEN_COOKIE,
} from "utils";
export function removeTokensFromCookieServer(
serverResponse: NextPageContext["res"] | undefined
): void {
serverResponse?.setHeader("Set-Cookie", [
`${ACCESS_TOKEN_COOKIE}=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT; SameSite=Lax;`,
`${REFRESH_TOKEN_COOKIE}=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT; SameSite=Lax;`,
`${EXPIRE_TOKEN_COOKIE}=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT; SameSite=Lax;`,
]);
}
|