You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
418 B
JavaScript
19 lines
418 B
JavaScript
/**
|
|
* Implement Gatsby's Node APIs in this file.
|
|
*
|
|
* See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-node/
|
|
*/
|
|
|
|
/**
|
|
* @type {import('gatsby').GatsbyNode['createPages']}
|
|
*/
|
|
exports.createPages = async ({ actions }) => {
|
|
const { createPage } = actions
|
|
createPage({
|
|
path: "/using-dsg",
|
|
component: require.resolve("./src/templates/using-dsg.js"),
|
|
context: {},
|
|
defer: true,
|
|
})
|
|
}
|