-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
52 lines (49 loc) · 1.45 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
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
const path = require('path');
exports.createPages = async ({ actions, graphql }) => {
const { createPage } = actions;
const aboutAuthorTemplate = path.resolve('src/templates/about-author.jsx');
const result = await graphql(`
{
allJavascriptFrontmatter {
edges {
node {
frontmatter {
path
lng
}
}
}
}
}
`);
// path: `/${node.frontmatter.lng}${node.frontmatter.path}`,
if (result.errors) {
console.log(result.errors);
throw new Error('Things broke, see console output above');
}
result.data.allJavascriptFrontmatter.edges.forEach(({ node }) => {
createPage({
path: `/${node.frontmatter.lng}${node.frontmatter.path}`,
component: aboutAuthorTemplate,
context: {
searchPath: node.frontmatter.path,
lang: node.frontmatter.lng,
}, // additional data can be passed via context
});
});
const indexPage = path.resolve('src/pages/index.js');
const searchPage = path.resolve('src/pages/search.js');
// const nf = path.resolve('src/pages/404.js');
['en', 'ru', 'by'].forEach(
(lang) => {
createPage({ path: `/${lang}/`, component: indexPage });
createPage({ path: `/${lang}/search`, component: searchPage });
// createPage({ path: `/${lang}/404`, component: nf });
},
);
};