Skip to content

Instantly share code, notes, and snippets.

@talentlessguy
Last active May 30, 2020 11:59
Show Gist options
  • Save talentlessguy/9f432a19a171f56e198dba91392ea4ee to your computer and use it in GitHub Desktop.
Save talentlessguy/9f432a19a171f56e198dba91392ea4ee to your computer and use it in GitHub Desktop.
SSR example for react-link-previewer
Page.getInitialProps = async ({ query }) => {
try {
const res = await fetch(`https://og-service.herokuapp.com/?link=${query}`)
const json = await res.json()
return { json }
catch (e) {
return { error: e }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment