getinitialprops on phone not working
//Try not use axios if you're using it.
//if not try use exactly this syntax
export async function getStaticProps() {
const res = await fetch(`http://localhost:3000/api/blogs`)
const Blogs = await res.json()
return {
props: {
Blogs,
},
}
}