forked from kataki/CS3SiteArchive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
50 lines (44 loc) · 1.27 KB
/
gatsby-node.js
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
const path = require(`path`)
const { node2slug } = require(`./src/utils.js`)
const template = path.resolve(`./src/templates/default.jsx`)
// Rest of createPages API...
exports.createPages = async ({ graphql, actions }) => {
const {data} = await graphql(`
{
allMarkdownRemark {
nodes {
id
frontmatter {
title
}
fileAbsolutePath
}
}
}
`)
data.allMarkdownRemark.nodes.forEach(node => {
actions.createPage({
path: node2slug(node),
component: `${template}?__contentFilePath=${node.fileAbsolutePath}`,
context: {
id: node.id,
},
})
})
}
exports.onCreateWebpackConfig = ({ getConfig, actions, stage }) => {
const webpackConfig = getConfig()
if (stage === "build-javascript") {
const dependencyRulesIndex = webpackConfig.module.rules.findIndex(
(rule) => {
return (
rule.test &&
rule.test.toString() === "/\\.(js|mjs)$/" &&
typeof rule.exclude === "function"
)
}
)
webpackConfig.module.rules.splice(dependencyRulesIndex, 1)
}
actions.replaceWebpackConfig(webpackConfig)
}