frontend/pages/index.vue
JustTemmie a90f062181
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
refactor: move the homepage to /me from /
2025-07-10 21:53:25 +02:00

18 lines
No EOL
194 B
Vue

<template>
<NuxtLayout>
</NuxtLayout>
</template>
<script lang="ts" setup>
await navigateTo("/me/", { replace: true })
definePageMeta({
layout: "client"
});
</script>
<style>
</style>