Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
66 views

I am using WPGraphQL(v2.3.8), Add WPGraphQL SEO(v5.0.0) and WP Gatsby(v2.3.3) plugins in wordpress. graphQL query- { posts { nodes { id title seo { title # yoast seo ...
shubh singh's user avatar
0 votes
0 answers
47 views

Using WordPress as a CMS, and Gatbsy for a headless WordPress website. When I run gatsby develop, the command line says: You can now view gatsby-wordpress-gutenberg-starter in the browser. ⠀ http://...
Steve's user avatar
  • 1,877
0 votes
0 answers
32 views

I am building a static webpage with GATSBY and CONTENTUFUL, and i want to make the website hybrid, when i am on local development i want to set the downloadLocal option to false, so i dont download ...
Alexander Petkov's user avatar
0 votes
0 answers
22 views

I'm trying to create a Gatsby website which will let me create reusable components around blog posts. Until recently I've been doing just fine, until I got stuck on importing images to MDX files in a ...
Mr Pavlitzky's user avatar
0 votes
0 answers
134 views

I created a new Gatsby project following the docs, and after the build ran npm run develop but got this error: > [email protected] develop > gatsby develop success compile gatsby files - 2.358s ...
user30359347's user avatar
1 vote
0 answers
39 views

The following third party code is written in the CK editor in drupal in source mode: <script> window.page = 'gidd'; </script><!-- On new release, please update the bundle count ...
Subhasish Nath's user avatar
0 votes
1 answer
58 views

I have a static Gatsby website hosted on S3 + Cloudfront. The site is working fine with custom error responses with path set to /index.html for error code 403 But when I try to manually enter a ...
Waleed93's user avatar
  • 1,332
0 votes
0 answers
20 views

The following simple codes got: Error executing Gatsby Function. It works fine on my local environment. Could you anyone point if there are simple errors? Thanks! import { GatsbyFunctionRequest, ...
Kevin .NET's user avatar
0 votes
0 answers
40 views

I'm working on my first website using Gatsby JS and I'm running into an issue when I run gatsby build. My local is running perfectly, but build is giving me a ERROR #95313 I've tried a number of ...
luke hinrichs's user avatar
0 votes
0 answers
41 views

I'm using Gatsby with a headless WordPress setup and WPGraphQL. I have a custom post type Talk, and within this post type, I am trying to retrieve related posts through a custom field relatedPosts. ...
Abundis's user avatar
  • 11
0 votes
0 answers
28 views

I'm developing a react app typescript using Gatsbyjs. These are some of the packages installed that might be useful to mention: "gatsby": "^5.14.1" "gatsby-transformer-json&...
Andrea Nicolai's user avatar
1 vote
0 answers
131 views

I have successfully installed react-google-recaptcha-v3 on my Gatsby project. My gatsby-ssr.js and gatsby-browser.js files looks like this: import React from "react" import { ...
Ander's user avatar
  • 5,754
0 votes
1 answer
72 views

I used https://pagespeed.web.dev/ today and was surprised that my website has only a performance score of 64. Running it in my browser, on the hosted site, in an incognito tab it's always between 95-...
Konstantin Schütte's user avatar
2 votes
0 answers
234 views

I’m encountering inconsistent playback with YouTube iframe embeds on my Gatsby site, specifically in Safari. Behavior Across Browsers: In all other browsers, the YouTube videos autoplay and loop as ...
yellucnai's user avatar
0 votes
0 answers
38 views

I've been trying for hours to figure out how to get a background image component using GatsbyJS, I've tried multiple different ways to skin the cat but nothing I've tried seems to work. I'm not sure ...
luke hinrichs's user avatar
0 votes
1 answer
64 views

I have a website with a 3 stage booking form. Each stage should send 2-3 emails via Postmark. It seems to work in development but when pushed to Netlify only 1 email is sent on each stage as shown ...
Daniel Balloch's user avatar
1 vote
0 answers
53 views

I have a web component at the top of the page that doesn't build the shadow DOM until the hydration phase, so there's a noticeable jump in my page between pulling the SSR static page and hydration ...
JoshBuildsStuff's user avatar
0 votes
2 answers
130 views

The fields that are available in Strapi don't appear in GraphQL schema (GraphiQL playground) I tried everything: all permissions are given in the Roles; deep population works, gatsby-source-strapi ...
Vitalina Baryshpolets's user avatar
0 votes
1 answer
41 views

I'm having trouble getting images to load on my website using GatsbyImage and would love any help with this resolving this. This is what I have on the page where I'm expecting the images to render: **...
HHK's user avatar
  • 1
2 votes
0 answers
35 views

Gatsby start fetching certain fields when you deep populate query in the gatsby-config like this { resolve: "gatsby-source-strapi", options: { apiURL: process.env....
Vitalina Baryshpolets's user avatar
0 votes
3 answers
65 views

I'm new to react and gatsby so I am following the gatsby tutorial online. I was steadily working through Part 2 when I ran into problem. On the tutorial they have created a second javascript file ...
Jakob Bister's user avatar
0 votes
1 answer
53 views

I am using Gatsby (React-based framework) as CMS and trying to create a component that will return a series of JSONs. But for some reason, there is a parsing error - ',' expected.ts(1005) My code - ...
Prithviraj Mitra's user avatar
1 vote
0 answers
30 views

I am working on a gatsby with Drupal CMS project and am currently facing an issue regarding gatsby-plugin-image with the images coming from the CMS. I am trying to replace all my tags with components ...
Robin's user avatar
  • 11
0 votes
0 answers
55 views

I recently recreated a website that has a search filter that narrows down a list of search results as the user types. The code in the markup of the component looks like this <label for="...
Optiq's user avatar
  • 3,354
2 votes
0 answers
30 views

I am building a blog with 2 different blog subdirectories. One is /blog/{blog_slug}/ and the other is /projects/{blog_slug}. My folder structure is as follows: blog/ blog1/ index.mdx ...
GoodErnest64's user avatar
0 votes
1 answer
248 views

I'm creating a react hook form in Gatsby. I just wanted to prefill the fields with existing data. But I'm getting this error and cannot even debug the code. Error: "Objects are not valid as a ...
Dexter's user avatar
  • 1
0 votes
0 answers
65 views

I am trying to create some dynamic pages from mdx in gatsby, using below code import { compileMDX } from 'gatsby-plugin-mdx'; import remarkGfm from 'remark-gfm'; const mdxContent = await compileMDX( ...
Sanjeet A's user avatar
  • 5,237
1 vote
0 answers
46 views

THE INTRO: I am trying to embed ggplotly graphs into a Gatsby webpage I am learning to create. After arguing back and forth with ChatGPT for a couple hours, I'm seeking out your knowledge. Here is at ...
Logan W.'s user avatar
-1 votes
2 answers
70 views

I create a new Gatsby project (with JS, tailwind). I would like to install other dependancies like gatsby-plugin-react-helmet, @mui/icons-material for example. Unfortunately I have error messages :...
Nelly Dubois's user avatar
0 votes
1 answer
64 views

I'm trying to iterate an array of data into a component. The way I'm doing it looks like this <article className={styles.contentList}> { organizations.map((item, index) =>{ ...
Optiq's user avatar
  • 3,354
0 votes
1 answer
147 views

I am using spline in a React project and am using Gatsby to create static pages of this project. When I run Gatsby develop locally everything works fine and my spline project is showing on the page. ...
Silke Janssens's user avatar
0 votes
1 answer
180 views

Got an issue with fragments, in a graphql query for a gatsby site I am working on that uses Contentful as the CMS: Consider the following query: export const query = graphql` query ...
Nicholas Hamilton's user avatar
0 votes
1 answer
92 views

I am currently able to generate a Nav menu however I would like to now add submenu items under each main nav item. I am using Gatsby with React. I have the following array: const items = [ { to: ...
Caleb Long's user avatar
0 votes
1 answer
89 views

templates/Post.tsx import React from 'react' import Helmet from 'react-helmet' import { graphql } from 'gatsby' import styled from 'styled-components' import { MDXRenderer } from 'gatsby-plugin-mdx' ...
NobinPegasus's user avatar
1 vote
1 answer
313 views

I'm trying to set up Docker for my Gatsby v5 application located in a folder structure like this: main-folder |_ backend (Docker setup working fine) |_ frontend (trying to set up Docker for this) In ...
Akshay Shrivastav's user avatar
-2 votes
1 answer
211 views

I try to get values of the first element of my fetch request. Here you can see my code -> the result of the fetch-request is assigned to "data" variable. const ListRezept = (props) => {...
user23348508's user avatar
0 votes
1 answer
110 views

I have a static site in Gatsby. I'm using an <a> tag to link to a pdf file to download, shortened version below: import file from '../files/file.pdf'; <a className='hover:underline hover:...
dangr's user avatar
  • 113
0 votes
0 answers
33 views

I'm trying to use i18next with Gatsby/React plugin. My Parent components (some page) import React from "react"; import ChildComponent from "./child"; import { useI18next } from &...
Antonio's user avatar
  • 39
0 votes
1 answer
61 views

I am trying to implement multiple requests to database and then display the results in my gatsby app. I have a working solution with one (!) request. const ListRezept = (props) => { const url_id = ...
user23348508's user avatar
0 votes
1 answer
110 views

I have a Gatsby React website hosted in Azure blob storage, this static website is generated by Sanity. Users access this website through an Azure CDN. Whenever a change is made in sanity we see that ...
Sainyam Chandra's user avatar
0 votes
1 answer
67 views

I'm using Gatsby and the gatsby-plugin-image to manage images being pulled in from a Netlify CMS. I'm struggling with the behaviour of the Gatsby Image plugin with Portrait images. In particular, I ...
Jamie's user avatar
  • 333
1 vote
0 answers
79 views

Top-level MarkdownRemark field in a graphql query in a Gatsby site cannot practically be null. But gatsby graphql typegen is generating it as nullable. It is annoying to have to account for ...
Shoh's user avatar
  • 11
0 votes
2 answers
85 views

The gatsby documentation is a little confusing on when to use pages using the file system route API and when to use a gatsby-node file with a createPages function. I am trying to go the route of just ...
CleverPatrick's user avatar
0 votes
0 answers
257 views

On my local machine, when I go to run npm start, I received an error: "Cannot access Contentful space "" on environment "master" with access token "*********" Make ...
Kelsey's user avatar
  • 53
0 votes
0 answers
31 views

In Gatsby I'm trying to create nodes with fetching the json in gatsby-node.js. The issue is that when I'm using fetch I'm getting build errors. When I load the json directly from its path it works. ...
KnapLelijk's user avatar
0 votes
1 answer
41 views

I followed the steps to create a gatsby site with netlify cms https://www.freecodecamp.org/news/how-to-build-a-blog-with-gatsby-and-netlify-cms/. However when I upload a blog post with images in it, ...
neelmeg's user avatar
  • 2,505
0 votes
1 answer
38 views

Pulled a snippet out of my passion project because I cannot figure out why this file can't be found when running locally (Gatsby). Why is that not a valid path? My tsv file is in the same directory ...
dulongj's user avatar
  • 327
0 votes
0 answers
233 views

My site builds fine initially, but when trying to create a page that's SSR using getServerData while using gatsby-source-wordpress i get the following: ERROR #98001 ENGINE.VALIDATION Built ...
Matthew Ellis's user avatar
0 votes
1 answer
296 views

I'm new to Gatsby, and I've been asked to add something to a Gatsby project, that isn't quite related to Gatsby. The dependency I had to add was not compatible with older versions of Gatsby, so I ...
Daniel Seidler's user avatar
0 votes
1 answer
192 views

I have Gastby 5.13.2 and I have installed gatsby-plugin-preact with preact and react-render-to-string. When I try npm run build I get this error: WebpackError: TypeError: renderToPipeableStream is not ...
Pavel Astapov's user avatar

1
2 3 4 5
117