Skip to content

Instantly share code, notes, and snippets.

@kkemple
Created February 1, 2019 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkemple/b2c20b5385b93505c51d32d5cd95897e to your computer and use it in GitHub Desktop.
Save kkemple/b2c20b5385b93505c51d32d5cd95897e to your computer and use it in GitHub Desktop.
exports.onCreatePage = async ({ page, actions }) => {
const { createPage } = actions
if (page.path.match(/^\/dashboard/)) {
page.matchPath = "/dashboard/*"
createPage(page)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment