From a0a31e8dced4d641f2ebfe0f95b707ec56e8e1be Mon Sep 17 00:00:00 2001 From: josedario87 Date: Sun, 12 Oct 2025 23:08:55 -0600 Subject: [PATCH] Fix: Move composables and components into app/ directory - Resolve SSR error "useAuthentik is not defined" - Follow Nuxt 4 directory structure conventions - When app/ exists, all app directories must be inside it - This enables proper auto-import of composables --- nuxt4/{ => app}/components/auth/ActionButtons.vue | 0 nuxt4/{ => app}/components/auth/StatusBadges.vue | 0 nuxt4/{ => app}/components/auth/UserAvatar.vue | 0 nuxt4/{ => app}/components/auth/UserMetadata.vue | 0 nuxt4/{ => app}/composables/useAuthentik.ts | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename nuxt4/{ => app}/components/auth/ActionButtons.vue (100%) rename nuxt4/{ => app}/components/auth/StatusBadges.vue (100%) rename nuxt4/{ => app}/components/auth/UserAvatar.vue (100%) rename nuxt4/{ => app}/components/auth/UserMetadata.vue (100%) rename nuxt4/{ => app}/composables/useAuthentik.ts (100%) diff --git a/nuxt4/components/auth/ActionButtons.vue b/nuxt4/app/components/auth/ActionButtons.vue similarity index 100% rename from nuxt4/components/auth/ActionButtons.vue rename to nuxt4/app/components/auth/ActionButtons.vue diff --git a/nuxt4/components/auth/StatusBadges.vue b/nuxt4/app/components/auth/StatusBadges.vue similarity index 100% rename from nuxt4/components/auth/StatusBadges.vue rename to nuxt4/app/components/auth/StatusBadges.vue diff --git a/nuxt4/components/auth/UserAvatar.vue b/nuxt4/app/components/auth/UserAvatar.vue similarity index 100% rename from nuxt4/components/auth/UserAvatar.vue rename to nuxt4/app/components/auth/UserAvatar.vue diff --git a/nuxt4/components/auth/UserMetadata.vue b/nuxt4/app/components/auth/UserMetadata.vue similarity index 100% rename from nuxt4/components/auth/UserMetadata.vue rename to nuxt4/app/components/auth/UserMetadata.vue diff --git a/nuxt4/composables/useAuthentik.ts b/nuxt4/app/composables/useAuthentik.ts similarity index 100% rename from nuxt4/composables/useAuthentik.ts rename to nuxt4/app/composables/useAuthentik.ts