From ddea20376d0df7847d79f25891558e94b4a53680 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Mon, 13 Oct 2025 01:33:10 -0600 Subject: [PATCH] Fix API endpoint location for Nuxt server structure Move /api/auth/status endpoint from app/server/ to server/ directory. Nuxt expects server API routes to be in /server/api/, not /app/server/api/. This fixes the issue where the endpoint was returning HTML instead of JSON. --- nuxt4/{app => }/server/api/auth/status.get.ts | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename nuxt4/{app => }/server/api/auth/status.get.ts (100%) diff --git a/nuxt4/app/server/api/auth/status.get.ts b/nuxt4/server/api/auth/status.get.ts similarity index 100% rename from nuxt4/app/server/api/auth/status.get.ts rename to nuxt4/server/api/auth/status.get.ts