Build & Deploy / build (push) Failing after 5s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
25 lines
467 B
Vue
25 lines
467 B
Vue
<script setup lang="ts">
|
|
const auth = useAuthStore()
|
|
const booting = ref(true)
|
|
|
|
useSeoMeta({
|
|
title: 'StreakFit',
|
|
description: 'Garde la flamme. Entraîne-toi, suis ta série, progresse.'
|
|
})
|
|
|
|
onMounted(async () => {
|
|
await auth.fetchMe()
|
|
booting.value = false
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UApp>
|
|
<NuxtLoadingIndicator color="#F97316" />
|
|
<SfLoadingScreen v-if="booting" />
|
|
<NuxtLayout v-else>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</UApp>
|
|
</template>
|