aki_site/gatsby-node.js

13 lines
289 B
JavaScript
Raw Permalink Normal View History

2021-08-24 11:09:28 -07:00
const standardBasePath = `/`
exports.createPages = async ({ actions }, themeOptions) => {
const { createPage } = actions
const basePath = themeOptions.basePath || standardBasePath
createPage({
path: basePath,
component: require.resolve(`./src/templates/cara.tsx`),
})
}