2022-11-29 23:51:52 +03:00
|
|
|
<script setup lang="ts">
|
2022-12-04 22:56:33 +03:00
|
|
|
import { hasProtocol, parseURL } from 'ufo'
|
2022-11-29 23:51:52 +03:00
|
|
|
|
|
|
|
definePageMeta({
|
|
|
|
middleware: async (to) => {
|
2022-12-04 22:56:33 +03:00
|
|
|
const permalink = Array.isArray(to.params.permalink)
|
|
|
|
? to.params.permalink.join('/')
|
|
|
|
: to.params.permalink
|
2022-11-29 23:51:52 +03:00
|
|
|
|
2022-12-04 22:56:33 +03:00
|
|
|
if (hasProtocol(permalink)) {
|
|
|
|
const { host, pathname } = parseURL(permalink)
|
2022-12-02 01:59:08 +03:00
|
|
|
|
2022-12-20 18:56:54 +03:00
|
|
|
if (host)
|
|
|
|
return `/${host}${pathname}`
|
2022-11-29 23:51:52 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 22:56:33 +03:00
|
|
|
// We've reached a page that doesn't exist
|
|
|
|
return false
|
2022-11-29 23:51:52 +03:00
|
|
|
},
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div />
|
|
|
|
</template>
|