7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
// Clear the auth cookie
|
|
deleteCookie(event, 'auth_token')
|
|
|
|
return { success: true }
|
|
})
|