2025-06-06 19:42:19 -04:00

17 lines
364 B
Vue

<template>
<div>
<!-- This page will automatically redirect to the default provider -->
</div>
</template>
<script setup lang="ts">
import { onMounted } from 'vue';
import { useAuth } from '#imports';
const { signIn } = useAuth();
// Automatically redirect to the default provider when the page loads
onMounted(() => {
signIn('default');
});
</script>