mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-10 04:22:06 +00:00
Fixed build issue with optional node value
This commit is contained in:
9
plugins/count-inline-code/gatsby-node.js
Normal file
9
plugins/count-inline-code/gatsby-node.js
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
exports.createSchemaCustomization = ({ actions }) => {
|
||||||
|
const { createTypes } = actions;
|
||||||
|
const typeDefs = `
|
||||||
|
type MarkdownRemarkFields implements Node {
|
||||||
|
inlineCount: Int
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
createTypes(typeDefs);
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user