mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
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,
|
|
})
|
|
}
|