diff --git a/frontend/app/api/products-create/route.ts b/frontend/app/api/products-create/route.ts index 10290c4a..4bcb114d 100644 --- a/frontend/app/api/products-create/route.ts +++ b/frontend/app/api/products-create/route.ts @@ -1,4 +1,4 @@ -import { getAuthHeaders } from '@/lib/auth-headers'; +import { getAuthHeaders } from '../../lib/auth-headers'; const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080'; diff --git a/frontend/app/api/products-update/[id]/route.ts b/frontend/app/api/products-update/[id]/route.ts index 158b37f0..4a60f99b 100644 --- a/frontend/app/api/products-update/[id]/route.ts +++ b/frontend/app/api/products-update/[id]/route.ts @@ -1,4 +1,4 @@ -import { getAuthHeaders } from '@/lib/auth-headers'; +import { getAuthHeaders } from '../../lib/auth-headers'; const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080';