initial conversion
This commit is contained in:
9
gatsby-node.js
Normal file
9
gatsby-node.js
Normal file
@@ -0,0 +1,9 @@
|
||||
exports.onCreatePage = async ({ page, actions }) => {
|
||||
const { createPage } = actions
|
||||
|
||||
if (page.path.match(/^\/app/)) {
|
||||
page.matchPath = "/app/*"
|
||||
|
||||
createPage(page)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user