This commit is contained in:
2025-09-03 16:30:08 +02:00
parent 481508b88c
commit c05d98f333

View File

@ -53,7 +53,7 @@ definePageMeta({
// This is an example of inline middleware // This is an example of inline middleware
middleware: async nuxtApp => { middleware: async nuxtApp => {
const host = useRequestURL().host const host = useRequestURL().host
const res = await $fetch('https://' + host + '/api/status') const res = await $fetch('http://localhost/api/status')
if (res.status === 'ready') { if (res.status === 'ready') {
navigateTo(host, { external: true }) navigateTo(host, { external: true })
return false; return false;