Skip to content

Instantly share code, notes, and snippets.

@davidparys
Created March 21, 2025 17:52
Show Gist options
  • Save davidparys/105ca148590345e06853831cc901bdc6 to your computer and use it in GitHub Desktop.
Save davidparys/105ca148590345e06853831cc901bdc6 to your computer and use it in GitHub Desktop.
Supabase Nuxt
<script setup lang="ts">
const deleteAccount = async () => {
try {
const data = await $fetch<{ success: boolean; message: string }>(
"/api/user/delete",
{
method: "DELETE",
}
);
await useSupabaseClient().auth.signOut();
} catch (error) {
console.error("Failed to delete account", error)
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment