DEV Community

Discussion on: Build a Basic Gatsby Blog with Markdown Posts

Collapse
 
keelsdesign profile image
KeelanJon

Just a note for anyone reading this as of 2021. I was struggling when trying to useSiteMetadata as a hook to be re-used throughout the site.

You should not import useSiteMetadata with braces i.e. "{ useSiteMetadata }", this will cause an object error. Ensure to use the plain text i.e.

import useSiteMetadata from "../hooks/use-site-metadata"

Collapse
 
cmohan profile image
Catherine Mohan

Thanks for the update!