yo-next-auth/actions/logout.ts

8 lines
179 B
TypeScript

'use server'
import { signOut } from '@/config/auth'
export const logout = async () => {
// do something separately from js client bundle prior logging out
await signOut()
}