-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-node.js
53 lines (49 loc) · 1.24 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
51
52
53
const path = require("path");
const { revisionTitle } = require("./config.json");
const getBuildDate = () => {
const timeElapsed = Date.now();
const today = new Date(timeElapsed);
return JSON.stringify(today.toISOString().split(".")[0] + "Z");
};
exports.onCreateWebpackConfig = ({ actions, getConfig, plugins }) => {
actions.setWebpackConfig({
devtool: getConfig().mode === "production" ? false : "source-map",
resolve: {
fallback: {
crypto: false,
},
modules: [path.resolve(__dirname, "src"), "node_modules"],
},
plugins: [
plugins.define({
BUILD_AT: getBuildDate(),
}),
],
});
};
exports.createPages = async ({ actions, graphql }) => {
const result = await graphql(`
{
allMarkdownRemark {
edges {
node {
frontmatter {
path
title
}
}
}
}
}
`);
if (result.errors) {
console.error(result.errors);
}
result.data.allMarkdownRemark.edges.forEach(({ node }) => {
node.frontmatter.title.toLowerCase() === revisionTitle &&
actions.createPage({
path: node.frontmatter.path,
component: path.resolve(`src/templates/revision.js`),
});
});
};