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;