mirror of
https://github.com/OpenSquawk/OpenSquawk
synced 2026-08-09 19:16:02 +08:00
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.
14 lines
318 B
Vue
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>
|