Skip to content

Instantly share code, notes, and snippets.

@andycarrell
Created May 15, 2020 22:46
Show Gist options
  • Save andycarrell/3b1b29148f98566418787751813b1843 to your computer and use it in GitHub Desktop.
Save andycarrell/3b1b29148f98566418787751813b1843 to your computer and use it in GitHub Desktop.
export async function getStaticProps({ params }) {
const { slug } = params;
const post = postFor[slug];
if (!post) {
return { props: {} };
}
const { default: Post, SEO } = await import(`../../posts/${post}`);
return { props: { Post, SEO } };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment