mirror of
https://github.com/dsoaress/link-free.git
synced 2026-08-17 06:56:04 +01:00
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
|
|
import { GetServerSidePropsContext } from 'next'
|
||
|
|
import { destroyCookie } from 'nookies'
|
||
|
|
|
||
|
|
export function destroyCookies(ctx: GetServerSidePropsContext | undefined = undefined) {
|
||
|
|
destroyCookie(ctx, 'accessToken', {
|
||
|
|
path: '/'
|
||
|
|
})
|
||
|
|
|
||
|
|
destroyCookie(ctx, 'refreshToken', {
|
||
|
|
path: '/'
|
||
|
|
})
|
||
|
|
}
|