From a0e1db934919cbc0eeced2e5ea9cca3883f82560 Mon Sep 17 00:00:00 2001 From: Yann Ahlgrim <95847401+YannAhlgrim@users.noreply.github.com> Date: Thu, 23 Oct 2025 14:46:21 +0200 Subject: [PATCH] Update backend URL to production environment --- frontend/next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/next.config.js b/frontend/next.config.js index 1e01949..1cb5a95 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -3,7 +3,7 @@ const nextConfig = { reactStrictMode: true, output: 'standalone', env: { - NEXT_PUBLIC_BACKEND_URL: process.env.NEXT_PUBLIC_BACKEND_URL || 'http://localhost:8003', + NEXT_PUBLIC_BACKEND_URL: process.env.NEXT_PUBLIC_BACKEND_URL || 'https://yann1.ahlgrim.net', }, }