You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying out this starter and updated all my packages in package.json. Thus, I ended up updating react-helment to 6.0.0. Doing this breaks the build. However, I searched on Google and found this: gatsbyjs/gatsby#10578 (comment). The solution is to change Line 2 in src/components/head.js and Line 3 in src/components/seo.js from import Helmet from "react-helmet"; to import { Helmet } from "react-helmet";
The text was updated successfully, but these errors were encountered:
I was trying out this starter and updated all my packages in
package.json
. Thus, I ended up updatingreact-helment
to6.0.0
. Doing this breaks the build. However, I searched on Google and found this: gatsbyjs/gatsby#10578 (comment). The solution is to changeLine 2
insrc/components/head.js
andLine 3
insrc/components/seo.js
fromimport Helmet from "react-helmet";
toimport { Helmet } from "react-helmet";
The text was updated successfully, but these errors were encountered: