forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
86 lines (78 loc) · 2.25 KB
/
next.config.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const webpack = require('webpack');
const pkg = require('./package.json');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const { findPages } = require('./docs/src/modules/utils/find');
process.env.MATERIAL_UI_VERSION = pkg.version;
module.exports = {
webpack: config => {
const plugins = config.plugins.concat([
new webpack.DefinePlugin({
'process.env': {
MATERIAL_UI_VERSION: JSON.stringify(process.env.MATERIAL_UI_VERSION),
},
}),
]);
if (process.env.DOCS_STATS_ENABLED) {
plugins.push(
// For all options see https://github.com/th0r/webpack-bundle-analyzer#as-plugin
new BundleAnalyzerPlugin({
analyzerMode: 'server',
generateStatsFile: true,
// Will be available at `.next/stats.json`
statsFilename: 'stats.json',
}),
);
}
return Object.assign({}, config, {
plugins,
module: Object.assign({}, config.module, {
rules: config.module.rules.concat([
{
test: /\.(css|md)$/,
loader: 'emit-file-loader',
options: {
name: 'dist/[path][name].[ext]',
},
},
{
test: /\.(css|md)$/,
loader: 'raw-loader',
},
]),
}),
});
},
webpackDevMiddleware: config => config,
exportPathMap: () => {
const pages = findPages();
const map = {
'/': { page: '/' },
};
// Do not use a recursive logic as we don't want to support a depth > 2.
pages.forEach(lvl0Page => {
if (!lvl0Page.children) {
return;
}
lvl0Page.children.forEach(lvl1Page => {
if (!lvl1Page.children) {
map[lvl1Page.pathname] = {
page: lvl1Page.pathname,
};
return;
}
lvl1Page.children.forEach(lvl2Page => {
map[lvl2Page.pathname] = {
page: lvl2Page.pathname,
};
});
});
});
return map;
},
onDemandEntries: {
// Period (in ms) where the server will keep pages in the buffer
maxInactiveAge: 120 * 1e3, // default 25s
// Number of pages that should be kept simultaneously without being disposed
pagesBufferLength: 3, // default 2
},
};