From 7f7bde6ffcc9c257aeec2aedd5a696955fe2b7d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Jaro=C5=A1?= Date: Sat, 11 Jan 2025 20:01:49 +0000 Subject: [PATCH] Use environment variable for API URL in fetch call --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bf49cfb..4af9bd5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import {Job} from "./type"; export default async function Page() { - const res = await fetch("http://localhost:3000/jobs.json", {cache: "no-store"}) + const res = await fetch(`${process.env.NEXT_PUBLIC_SITE_URL}/jobs.json`, {cache: "no-store"}) const data: Job[] | undefined = await res?.json(); return (