testcommit

This commit is contained in:
itsrubberduck
2026-07-28 19:29:09 +02:00
parent 47cefc5f7b
commit 676779895d

12
app/pages/start.vue Normal file
View File

@@ -0,0 +1,12 @@
<script setup lang="ts">
const route = useRoute()
definePageMeta({ layout: false })
// This page was /start in the monorepo and became the app's front page in the
// split (see index.vue). Bookmarks, the website's redirect and every link that
// predates the split still point at /start, so catch it here instead of
// showing a 404 — the app should not depend on the website being redeployed
// for its own old URLs to work.
await navigateTo({ path: '/', query: route.query }, { replace: true })
</script>