mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-21 23:08:56 +00:00
new examples
This commit is contained in:
18
node/gatsby/gatsby-node.js
Normal file
18
node/gatsby/gatsby-node.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* 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,
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user