mirror of
https://github.com/OpenSquawk/OpenSquawk
synced 2026-08-04 08:06:26 +08:00
15 lines
403 B
Vue
15 lines
403 B
Vue
<script setup lang="ts">
|
|
// Legacy URL — /pm was renamed to /live-atc. Kept as a permanent redirect so
|
|
// old bookmarks/links (including admin bug-report deep links with query
|
|
// params like ?restoreBugReport=<id>) keep working.
|
|
definePageMeta({
|
|
middleware: [
|
|
(to) => navigateTo({ path: '/live-atc', query: to.query }, { redirectCode: 301 }),
|
|
],
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div />
|
|
</template>
|