Next.js Discord

Discord Forum

How to logout ?

Answered
i_lost_to_loba_kreygasm posted this in #help-forum
Open in Discord
I managed to login with google provider in next-auth but now I want to add a logout function ? how can I do that ?
Answered by Cão Fila de São Miguel
You can use below method to logout.

import { signOut } from "next-auth/react"
<button onClick={() => signOut()}>Sign out</button>



https://next-auth.js.org/getting-started/client#signout
View full answer

1 Reply

Cão Fila de São Miguel
You can use below method to logout.

import { signOut } from "next-auth/react"
<button onClick={() => signOut()}>Sign out</button>



https://next-auth.js.org/getting-started/client#signout
Answer