From bf8b1d0d49703e82cf8162399405984bd0b3fe88 Mon Sep 17 00:00:00 2001 From: zwlucas Date: Fri, 29 May 2026 18:24:59 -0300 Subject: feat: implement static file serving and Docker support, update frontend build process Signed-off-by: zwlucas --- frontend/src/routes/+layout.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/src/routes/+layout.svelte') diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte index 9ed74ce..8dbfcda 100644 --- a/frontend/src/routes/+layout.svelte +++ b/frontend/src/routes/+layout.svelte @@ -8,7 +8,7 @@ onMount(async () => { try { - const res = await fetch('http://localhost:8080/api/active-maintenance'); + const res = await fetch('/api/active-maintenance'); if (res.ok) { const data = await res.json(); maintenance = data.maintenance ?? null; -- cgit v1.2.3