Next.js Discord

Discord Forum

Having issues with fetching data from relative URL !

Unanswered
Siberian posted this in #help-forum
Open in Discord
SiberianOP
Can somebody help me in fetching data from relative url ?
export default async function Home() {
  const data = await fetch('/api/hello')
  const posts = await data.json();
  console.log(posts)
  return (
    <div>
      Hello
    </div>
  );
}

1 Reply