From c05d98f333ff376ea8aa4ecd00cb4d7dbe2a9d86 Mon Sep 17 00:00:00 2001 From: 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 Date: Wed, 3 Sep 2025 16:30:08 +0200 Subject: [PATCH] fix --- app/pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pages/index.vue b/app/pages/index.vue index 733e6e8..e4795b5 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -53,7 +53,7 @@ definePageMeta({ // This is an example of inline middleware middleware: async nuxtApp => { const host = useRequestURL().host - const res = await $fetch('https://' + host + '/api/status') + const res = await $fetch('http://localhost/api/status') if (res.status === 'ready') { navigateTo(host, { external: true }) return false;