From b2e739a66765c3cb8e11f13fa96f96b17f484dff Mon Sep 17 00:00:00 2001 From: Denshooter <44590296+Denshooter@users.noreply.github.com> Date: Thu, 13 Feb 2025 14:33:44 +0100 Subject: [PATCH] d-branch-1 (#20) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ✨ feat: update Docker setup and enhance error handling * ✨ fix: update GHOST_API_URL to use hostname instead of IP --- app/api/fetchProject/route.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/fetchProject/route.tsx b/app/api/fetchProject/route.tsx index 2ecb949..68625f4 100644 --- a/app/api/fetchProject/route.tsx +++ b/app/api/fetchProject/route.tsx @@ -2,7 +2,7 @@ import { NextResponse } from "next/server"; export const runtime = "nodejs"; // Force Node runtime -const GHOST_API_URL = "http://192.168.179.31:2368"; +const GHOST_API_URL = "http://big-bear-ghost:2368"; const GHOST_API_KEY = process.env.GHOST_API_KEY; export async function GET(request: Request) {