Demo Blog
Rendering content
Kostas

Kostas

Nov 12, 2021

Rendering content

export async function getStaticPaths() {
	const posts = await getPosts();
	return {
		paths: posts.map(({ node: { slug } }) => ({ params: { slug } })),
		fallback: true,
	};
}

heading1

heading2

heading3

heading 4

heading 5
heading6

console.log()

Kostas

Kostas

I'm a freshly baked web developer :)

Leave a comment ✍️

Related Posts

Categories