Having issues with fetching data from relative URL !
Unanswered
Siberian posted this in #help-forum
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>
);
}