forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
100 lines (90 loc) · 2.83 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const webpack = require('webpack');
const pkg = require('./package.json');
const withTM = require('next-plugin-transpile-modules');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const { findPages } = require('./docs/src/modules/utils/find');
const LANGUAGES = ['en', 'zh', 'ru', 'pt', 'fr', 'es', 'de'];
module.exports = {
webpack: (config, options) => {
// Alias @material-ui/core peer dependency imports form the following modules to our sources.
config = withTM({
transpileModules: ['notistack', 'material-ui-pickers'],
}).webpack(config, options);
const plugins = config.plugins.concat([
new webpack.DefinePlugin({
'process.env': {
LIB_VERSION: JSON.stringify(pkg.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,
node: {
fs: 'empty',
},
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,
// Next.js provides a `defaultPathMap` argument, we could simplify the logic.
// However, we don't in order to prevent any regression in the `findPages()` method.
exportPathMap: () => {
const pages = findPages();
const map = {};
function traverse(pages2, userLanguage) {
const prefix = userLanguage === 'en' ? '' : `/${userLanguage}`;
pages2.forEach(page => {
if (!page.children) {
map[`${prefix}${page.pathname}`] = {
page: page.pathname,
query: {
userLanguage,
},
};
return;
}
traverse(page.children, userLanguage);
});
}
// We want to speed-up the build of pull requests.
if (process.env.PULL_REQUEST === 'true') {
traverse(pages, 'en');
} else {
LANGUAGES.forEach(userLanguage => {
traverse(pages, userLanguage);
});
}
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
},
};