Use environment variable for API URL in fetch call
All checks were successful
forgejo/romanjaros/portfolio/pipeline/head This commit looks good

This commit is contained in:
Roman Jaroš 2025-01-11 20:01:49 +00:00
parent 48c74074df
commit 7f7bde6ffc

View file

@ -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 (