-
Notifications
You must be signed in to change notification settings - Fork 49
/
gatsby-node.ts
90 lines (82 loc) · 2.08 KB
/
gatsby-node.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const path = require('path')
exports.onCreateNode = ({ node, getNode, actions }: any) => {
const { createNodeField } = actions
if (node.internal.type === `Mdx`) {
const parent = getNode(node.parent)
let value = parent.relativePath.replace(parent.ext, '')
if (value === 'index') {
value = ''
}
createNodeField({
node,
name: `slug`,
value: `/${value}`,
})
createNodeField({
node,
name: 'id',
value: node.id,
})
createNodeField({
node,
name: 'modSlug',
value: `/${value.replace('/index', '')}`,
})
}
}
exports.createPages = async ({ graphql, actions, reporter }: any) => {
const { createPage } = actions
const result = await graphql(`
query {
allMdx {
nodes {
id
fields {
slug
id
modSlug
}
frontmatter {
title
metaTitle
metaImage
metaDescription
skipBuild
}
internal {
contentFilePath
}
}
}
}
`)
if (result.errors) {
reporter.panicOnBuild('Error loading MDX result', result.errors)
}
// Create blog post pages.
const posts = result.data.allMdx.nodes
// you'll call `createPage` for each result
posts.forEach((node: any) => {
createPage({
path: node.fields.modSlug ? node.fields.modSlug.replace(/\d{2,}-/g, '') : '/',
component: path.resolve('./src/templates/docs.tsx'),
context: {
id: node.fields.id,
seoTitle: node.frontmatter.metaTitle || node.frontmatter.title,
seoDescription: node.frontmatter.metaDescription || node.frontmatter.title,
metaImage: node.frontmatter.metaImage || '',
},
})
})
}
exports.onCreateWebpackConfig = ({ actions }: any) => {
actions.setWebpackConfig({
resolve: {
modules: [path.resolve(__dirname, 'src'), 'node_modules'],
alias: {
$components: path.resolve(__dirname, 'src/components'),
buble: '@philpl/buble', // to reduce bundle size
},
},
})
}