This repository was archived by the owner on Jan 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathgatsby-node.js
66 lines (63 loc) · 2.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const webpack = require("webpack");
const _ = require("lodash");
exports.modifyWebpackConfig = ({ config, stage }) => {
switch (stage) {
case "build-javascript":
config.plugin("CommonsChunkPlugin", webpack.optimize.CommonsChunkPlugin, [
{
name: `commons`,
chunks: [`app`, `component---src-layouts-index-js`, `component---src-pages-index-js`],
minChunks: (module, count) => {
const vendorModuleList = [
`react`,
`react-dom`,
`fbjs`,
`react-router`,
`react-router-dom`,
`gatsby-react-router-scroll`,
`dom-helpers`, // Used in gatsby-react-router-scroll
`path-to-regexp`,
`isarray`, // Used by path-to-regexp.
`scroll-behavior`,
`history`,
`resolve-pathname`, // Used by history.
`value-equal`, // Used by history.
`invariant`, // Used by history.
`warning`, // Used by history.
`babel-runtime`, // Used by history.
`core-js`, // Used by history.
`loose-envify`, // Used by history.
`prop-types`,
`gatsby-link`,
`jss`,
`material-ui`,
`color`,
`color-convert`,
`react-jss`,
`theming`,
`color-name`
];
const isFramework = _.some(
vendorModuleList.map(vendor => {
const regex = new RegExp(`[\\\\/]node_modules[\\\\/]${vendor}[\\\\/].*`, `i`);
return regex.test(module.resource);
})
);
return isFramework || count > 2;
}
}
]);
config.plugin("BundleAnalyzerPlugin", BundleAnalyzerPlugin, [
{
analyzerMode: "static",
reportFilename: "./report/treemap.html",
openAnalyzer: true,
logLevel: "error",
defaultSizes: "gzip"
}
]);
break;
}
return config;
};