I am working with Gatsby and have some code in my gatsby-browswer.js file which is importing a theme, but the changes don’t reflect on my webpage. My gatsby-browser file: My theme file: The page is a very simple “Hello World”, but when I check the font and everything else on the webpage, the…
Tag: gatsby
Why can’t Gatsby / Facebook find my og:image
I have a Gatsby app setup. src/ —images/foo.jpg // <— the img i want on my facebook shareable URL (og:image). —images/ // <– note, there are loads of PNG files i’m using that seem to trip/default onto the FB image/share. —assets/ // <— loads of SVGs i’m…
How to insert amazon associate ad widget into website
Github Repo (With dummy id(which works)) Update: It looks like the problem may be that the ad widget I am trying to use requires flash. There are other Amazon ads I am able to display(view github repo), but it looks like some of the more specific widgets may be using flash. I figure that using flash widgets m…
WebpackError: ReferenceError: window is not defined – npm run build
I get the following error when i do “npm run build” : WebpackError: ReferenceError: window is not defined this is a part of code that causes an error: Answer During your development, you can access to window in client. When you run build, gatsby renders these components on the server where window …
Unhandled Rejection (Error): Expected undefined to be a GraphQL schema
I’m trying to build the post pages imported from WordPress, I run “gatsby develop” and I head to the URL. The front page flashes up and then I get this error: The query which is highlighted in my ‘PostTemplate.js’: I run the same query through the GraphiQL interface and it sends …
How to get pathname in the layout file in gatsby
I am working with gasby and here the main file is always layout.js which is the parent of them all. Since it is a parent file then how can I get a location props this.props.location.pathname inside it? Here is my layout component Answer As stated in the Gatsby docs: In v1, the layout component had access to h…
Getting URL Parameters on GatsbyJS
Is there a way to retrieve url parameters passed on pages of project built on GatsbyJS? I’m trying to implement a password reset function on my page using AWS, but they can only send the parameters through a link sent to the user’s email. So the flow would be like this : User triggers Forgot Passw…