-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-node.js
44 lines (40 loc) · 948 Bytes
/
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
import fs from 'fs-extra';
import sm from 'sitemap';
function pagesToSitemap(pages) {
const urls = pages.map((p) => {
if (p.path !== undefined) {
return {
url: p.path,
changefreq: 'daily',
priority: 0.7
};
}
});
// remove undefined (template pages)
return urls.filter(u => u !== undefined);
}
function generateSiteMap(pages) {
const sitemap = sm.createSitemap({
hostname: 'https://mygi.io',
cacheTime: '60000',
urls: pagesToSitemap(pages),
});
console.log('Generating sitemap.xml');
fs.writeFileSync(
`${__dirname}/public/sitemap.xml`,
sitemap.toString()
);
}
exports.postBuild = (pages, callback) => {
generateSiteMap(pages);
callback();
}
exports.modifyWebpackConfig = (config, stage) => {
if (stage !== `develop-html`) {
config._config.resolve.alias = {
react: `preact-compat`,
'react-dom': `preact-compat`
};
}
return config;
}