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
* Add verbose instructions and a new env var for node manifest warnings
* Add author docs link in conceptual guide
Co-authored-by: gatsbybot <[email protected]>
Copy file name to clipboardExpand all lines: docs/docs/conceptual/content-sync.md
+5
Original file line number
Diff line number
Diff line change
@@ -37,10 +37,15 @@ The hierarchy is as follows, from most specific to least specific:
37
37
3. An `id` property in the [page `context` passed to the `createPage` API][createpage] with a node id which matches the previewed node id. (automatic)
38
38
4. The first matching node id found in Gatsby's [GraphQL query tracking][querytracking] which maps node id's to pages that query them. This allows nodes which have no direct top-level page correlated with them to be previewed throughout the site. (automatic)
39
39
40
+
## Source Plugin Authors
41
+
42
+
If you're a source plugin author, you can find instructions on adding Content Sync support to your source plugin and CMS extension in the [source plugin author docs](authordocs).
43
+
40
44
## Diagram
41
45
42
46

@@ -397,7 +399,7 @@ export async function processNodeManifests(): Promise<Map<
397
399
...listOfUniqueErrorIds,
398
400
].join(`, `)}]. `
399
401
: ``)+
400
-
`Visit https://gatsby.dev/nodemanifest for more info on Node Manifests`
402
+
`To see full warning messages set process.env.VERBOSE_NODE_MANIFEST to "true".\nVisit https://gatsby.dev/nodemanifest for more info on Node Manifests.`
0 commit comments