From 22095aa71c7dc200b6aae80ceac95113c0eb8c22 Mon Sep 17 00:00:00 2001 From: Theo Leuthardt <60556192+theoleuthardt@users.noreply.github.com> Date: Fri, 28 Feb 2025 11:51:01 +0100 Subject: [PATCH 1/2] unnecessary change --- frontend/next.config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/next.config.ts b/frontend/next.config.ts index 2885d37..61ab14e 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -1,7 +1,5 @@ import type { NextConfig } from "next"; -console.log("NEXT_PUBLIC_BACKEND_URL", process.env.NEXT_PUBLIC_BACKEND_URL); - const nextConfig: NextConfig = { output: "standalone", env: { From eb256f5cb5936fff4c91a2a9459df3cf821cf2da Mon Sep 17 00:00:00 2001 From: Theo Leuthardt <60556192+theoleuthardt@users.noreply.github.com> Date: Fri, 28 Feb 2025 11:52:52 +0100 Subject: [PATCH 2/2] fix: use bash idiot --- frontend/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/entrypoint.sh b/frontend/entrypoint.sh index e3ec2e8..b838896 100644 --- a/frontend/entrypoint.sh +++ b/frontend/entrypoint.sh @@ -1,3 +1,3 @@ -#!/bin/sh +#!/bin/bash echo "NEXT_PUBLIC_BACKEND_URL: $NEXT_PUBLIC_BACKEND_URL" exec node server.js