Files
OpenSquawk/app/pages/pm.vue
itsrubberduck c8c2365c4d refactor(split): make the app self-hosting ready
Remove the transitional website auth, admin hooks, SEO and hosted analytics together, then align the app routes, runtime configuration, tests and dependencies. These changes form one atomic cleanup because the filtered app must switch its identity and runtime surfaces as a unit.
2026-07-27 19:17:27 +02:00

14 lines
318 B
Vue

<script setup lang="ts">
// Legacy URL — /pm was renamed to /live-atc. Kept as a permanent redirect so
// old bookmarks and links keep working.
definePageMeta({
middleware: [
(to) => navigateTo({ path: '/live-atc', query: to.query }, { redirectCode: 301 }),
],
})
</script>
<template>
<div />
</template>