Skip to content

Commit

Permalink
fix slug blog in gatsby node
Browse files Browse the repository at this point in the history
  • Loading branch information
gagahpangeran committed Apr 18, 2021
1 parent 701cd9a commit a393ccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatsby-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export const onCreateNode: GatsbyNode["onCreateNode"] = ({
createNodeField({
name: `slug`,
node,
value
value: `/blog${value}`
});
}
};
Expand Down

0 comments on commit a393ccf

Please sign in to comment.