From 179fb67e41061773a5af777c7ca83a22cf6d0699 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Wed, 12 Mar 2025 13:05:08 +0100 Subject: [PATCH] Update route.ts --- frontend/src/app/api/categories/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/api/categories/route.ts b/frontend/src/app/api/categories/route.ts index 2d33a3a..d4e76c5 100644 --- a/frontend/src/app/api/categories/route.ts +++ b/frontend/src/app/api/categories/route.ts @@ -5,7 +5,7 @@ import path from "path"; export const dynamic = "force-static"; -const jsonDir = "public/json"; +const jsonDir = "../json"; const metadataFileName = "metadata.json"; const encoding = "utf-8";