-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
49 lines (43 loc) · 1.04 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
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
const path = require('path')
const { languages } = require('./src/i18n/locales')
exports.onCreatePage = ({ page, boundActionCreators }) => {
const { createPage, deletePage } = boundActionCreators
if (page.path.includes('404')) {
return Promise.resolve()
}
return new Promise(resolve => {
const redirect = path.resolve('src/i18n/redirect.js')
const redirectPage = {
...page,
component: redirect,
context: {
languages,
locale: '',
routed: false,
redirectPage: page.path,
},
}
deletePage(page)
createPage(redirectPage)
languages.forEach(({ value }) => {
const localePage = {
...page,
originalPath: page.path,
path: `/${value}${page.path}`,
context: {
languages,
locale: value,
routed: true,
originalPath: page.path,
},
}
createPage(localePage)
})
resolve()
})
}