FrontendMasters / gatsby-intro

Code for the Introduction to Gatsby course.
https://frontendmasters.com/courses/gatsby/
MIT License
253 stars 235 forks source link

warn "export 'default' (imported as 'Helmet') was not found in 'react-helmet' #41

Open NandoJourneyman opened 4 years ago

NandoJourneyman commented 4 years ago

I followed all the steps on the Rendering Site Metadata video and upon restarting the server, I was getting the following error: warn "export 'default' (imported as 'Helmet') was not found in 'react-helmet'

After looking for a while into it, I found the solution was to put “Helmet” in curly brackets in the layouts.js file. Like so:

Before import Helmet from "react-helmet";

After import { Helmet } from "react-helmet";