Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit fef94d5

Browse files
committed
Create page with integrations path
Closes #8
1 parent 268a444 commit fef94d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gatsby-node.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ exports.createPages = ({ graphql, actions }) => {
9191
result.data.scanner.edges.forEach(({ node }) => {
9292
const component = path.resolve("src/templates/integration.js");
9393
createPage({
94-
path: node.frontmatter.path,
94+
path: `integrations/${node.frontmatter.path}`,
9595
component,
9696
context: {
9797
id: node.id
@@ -101,7 +101,7 @@ exports.createPages = ({ graphql, actions }) => {
101101
result.data.persistenceProvider.edges.forEach(({ node }) => {
102102
const component = path.resolve("src/templates/integration.js");
103103
createPage({
104-
path: node.frontmatter.path,
104+
path:`integrations/${node.frontmatter.path}`,
105105
component,
106106
context: {
107107
id: node.id

0 commit comments

Comments
 (0)