Replies: 2 comments 1 reply
-
@viddyoze I'm having the same problem with a Gatsby site running on Gatsby Cloud with Sanity.io content. I'll reach out through my Gatsby Cloud account and hopefully get a quick answer from them. |
Beta Was this translation helpful? Give feedback.
-
Hi @viddyoze, I believe the issue is related to allWpPost {
nodes {
id,
[...],
internal { contentDigest }
}
} and then during the export const transformer = (data) => data?.allWpPost?.nodes.map((post) => ({
objectID: post.id,
[...],
internal: post.internal,
}); That should sort your builds out. NB if you are not using the |
Beta Was this translation helpful? Give feedback.
-
Hi. I have a Gatsby/Wordpress site running on Netlify and the build will fail unless I manually run the build and clear cache option. This is the error I'm receiving
I'm not sure what to try, any help is appreciated
Beta Was this translation helpful? Give feedback.
All reactions