mirror of
https://github.com/Paris-est-Ludique/ForceOrange.git
synced 2025-06-08 01:04:20 +02:00
14 lines
239 B
Vue
14 lines
239 B
Vue
<script setup lang="ts">
|
|
const { auth } = useSupabaseClient()
|
|
|
|
auth.onAuthStateChange(async (event) => {
|
|
if (event === 'SIGNED_OUT')
|
|
navigateTo('/')
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template> |