Use environment variable for API URL in fetch call
All checks were successful
forgejo/romanjaros/portfolio/pipeline/head This commit looks good
All checks were successful
forgejo/romanjaros/portfolio/pipeline/head This commit looks good
This commit is contained in:
parent
48c74074df
commit
7f7bde6ffc
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ import {Job} from "./type";
|
||||||
|
|
||||||
export default async function Page() {
|
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();
|
const data: Job[] | undefined = await res?.json();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Add table
Reference in a new issue